Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-09-21 | [wx] Remove optional shadowing clauses | Dan Gudmundsson | |
In some cases the non optional clause could make some clauses unreachable. i.e. in the following example the second clause will never be reached. prepend(This,Window) when is_record(This, wx_ref),is_record(Window, wx_ref) -> prepend(This,Window, []); prepend(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ItemT,ref=ItemRef}) -> ?CLASS(ThisT,wxSizer), ?CLASS(ItemT,wxSizerItem), wxe_util:call(?wxSizer_Prepend_1, <<ThisRef:32/?UI,ItemRef:32/?UI>>). | |||
2011-09-21 | [wx] Remove warning | Dan Gudmundsson | |
2011-09-21 | [wx] Fix trailing whitespace | Dan Gudmundsson | |
2011-09-21 | [wx] Test colors in textctrl | Dan Gudmundsson | |
2011-09-21 | [wx] Fix cleanup memory references | Dan Gudmundsson | |
Could cause a crash in later restarts | |||
2011-09-21 | Merge branch 'dgud/wx/virtual-listctrl/OTP-9415' into dev | Dan Gudmundsson | |
* dgud/wx/virtual-listctrl/OTP-9415: Handle overloading callbacks the same as events Fix documentation and callback options in wxListCtrl:create/3 Add example and testcase Add wxListItemAttr Generated code of previous commit Add support for virtual listctrls Re-generated with new doxygen | |||
2011-09-15 | Fix misspelling of successful | Tuncer Ayaz | |
2011-07-14 | Handle overloading callbacks the same as events | Dan Gudmundsson | |
Previously other process wx calls where allowed to execute in the callback code, but that lead to a deadlock if for example a dialog was created. | |||
2011-07-07 | Fix documentation and callback options in wxListCtrl:create/3 | Dan Gudmundsson | |
2011-07-07 | Add example and testcase | Dan Gudmundsson | |
2011-07-07 | Add wxListItemAttr | Dan Gudmundsson | |
Needed in virtual listctrls. | |||
2011-07-07 | Generated code of previous commit | Dan Gudmundsson | |
2011-07-07 | Add support for virtual listctrls | Dan Gudmundsson | |
2011-07-05 | Re-generated with new doxygen | Dan Gudmundsson | |
Used doxygen 1.7.3 | |||
2011-06-30 | wx: fix obsolete guard warning (list/1) | Tuncer Ayaz | |
2011-05-24 | Prepare releaseOTP_R14B03 | Erlang/OTP | |
2011-05-19 | Fix wx app file, sed didn't work on all platforms | Dan Gudmundsson | |
2011-03-17 | Merge branch 'dev' into ↵ | Micael Karlberg | |
bmk/inets/ftp/missing_spec_causes_dialyxer_problems/OTP-9114 Also fixed a bunch of "end-years" (was 2010 but should have been 2011, which the commit hook not happy with). | |||
2011-03-14 | Prepare releaseOTP_R14B02 | Erlang/OTP | |
2011-03-11 | Update copyright years | Björn-Egil Dahlberg | |
2011-03-02 | Make MacOS (NS) wx use the main thread | Patrik Nyblom | |
2011-03-02 | Fix bad string copy during initialization | Dan Gudmundsson | |
This may have caused the core dump on ubuntu-64 which have happend for some people. | |||
2011-03-02 | Fix start args | Dan Gudmundsson | |
2011-03-02 | Fixed coredump when graphics could not be initiated | Dan Gudmundsson | |
For instance when DISPLAY was not set | |||
2011-02-17 | Rename Suite Callback to Common Test Hook | Lukas Larsson | |
2011-02-17 | Update and add cover spec files to work with common_test | Lukas Larsson | |
2011-02-17 | Update all test specs | Lukas Larsson | |
2011-02-17 | Fix formatting for wx | Lukas Larsson | |
2011-02-17 | Add init_per_suite and end_per_suite | Lukas Larsson | |
2011-02-17 | Add ts_install_scb to suite/0 | Lukas Larsson | |
2011-02-17 | Update wx tests to conform with common_test standard | Lukas Larsson | |
2011-02-17 | Update all fin_per_testcase to end_per_testcase. | Lukas Larsson | |
2011-02-17 | Update tests to work with ts -> ct migrations script. | Lukas Larsson | |
2010-12-06 | Prepare release | Erlang/OTP | |
2010-11-26 | Merge branch 'dgud/wx/misc-bugs/OTP-8951' into dev | Dan Gudmundsson | |
* dgud/wx/misc-bugs/OTP-8951: Add wxSystemSettings Avoid eternal loops when quiting | |||
2010-11-19 | Fix non available opengl functions | Dan Gudmundsson | |
Opengl functions are loaded at runtime and differ with drivers and cards. | |||
2010-11-18 | Add lib paths for *bsd variants | Dan Gudmundsson | |
2010-11-15 | Initilize opengl after setCurrent | Dan Gudmundsson | |
No rendering context is available until setCurrent is called the first time, opengl extensions can not be loaded before the rendering context is created. | |||
2010-11-15 | Update to OpenGL 4.1 | Dan Gudmundsson | |
2010-11-15 | Remove ostype sub dirs below wx/priv | Dan Gudmundsson | |
This was intended for distributing several binaries in one package, in standalone version, it has no need when included in otp. | |||
2010-11-15 | Windows and Mac build issues | Dan Gudmundsson | |
2010-11-15 | Add dialyser spec | Dan Gudmundsson | |
2010-11-15 | Better make dependecies for api generation | Dan Gudmundsson | |
2010-11-15 | Split opengl functionality into separate dynamic library | Dan Gudmundsson | |
The idea is to build a separate opengl library which can be reused by other erlang applications. | |||
2010-11-10 | wxWidgets configure fixes | Raimo Niskanen | |
2010-11-04 | Add wxSystemSettings | Dan Gudmundsson | |
Sigh, forgot to commit the erlang module in the previous release. | |||
2010-11-04 | Avoid eternal loops when quiting | Dan Gudmundsson | |
Caused an eternal loop and crash if an event was sent when stopping erlang. | |||
2010-09-13 | Prepare releaseOTP_R14B | Erlang/OTP | |
2010-09-07 | Merge branch 'mk/net-dragonfly-bsd-patches' into dev | Björn Gustavsson | |
* mk/net-dragonfly-bsd-patches: Remove unused variables Use proper install method Add support for DragonFly BSD Add support for NetBSD | |||
2010-08-27 | Merge branch 'dgud/wx/TreeCtrl_editlabel/OTP-8767' into dev | Dan Gudmundsson | |
* dgud/wx/TreeCtrl_editlabel/OTP-8767: Add .gitignore Added missing wxTextCtrl:editLabel/2. |