Files
wxWidgets/include/wx/gtk
Vadim Zeitlin 96f3832d52 Override DoEnable() instead of Enable() in wxGTK controls
This is slightly simpler, as it doesn't require checking whether the
control state really changes or not (it always does if DoEnable() is
called) and allows disabling the controls before creating them, e.g.
code like

    wxButton* const b = new wxButton();
    b->Disable();
    b->Create(this, wxID_OK);

works as expected now instead of spewing GTK+ errors.
2018-12-09 19:21:51 +01:00
..
2015-08-26 22:49:53 +02:00
2015-09-06 17:20:42 -07:00
2014-03-30 00:02:23 +00:00
2014-03-30 00:02:23 +00:00
2014-03-30 00:02:23 +00:00
2018-09-17 15:24:40 +02:00
2015-08-26 22:49:53 +02:00
2014-03-30 00:02:23 +00:00
2017-09-10 01:02:06 +02:00
2018-10-09 22:24:58 -07:00