wxWidgets/include
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
..
msvc/wx Introduce MSW ARM64 support 2018-09-17 22:34:32 +02:00
wx Override DoEnable() instead of Enable() in wxGTK controls 2018-12-09 19:21:51 +01:00