From: David Elliott Date: Wed, 14 Jan 2004 03:52:50 +0000 (+0000) Subject: Added empty base class constructors. This will still be broken for anything X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/096a56242d24fa8d4dbc731011c867c9deac2dfb Added empty base class constructors. This will still be broken for anything other than MSW, Mac, and Univ. Julian: Fix this the right way. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/button.mm b/src/cocoa/button.mm index 7b93013217..5bf61552c3 100644 --- a/src/cocoa/button.mm +++ b/src/cocoa/button.mm @@ -21,6 +21,10 @@ #import #include "wx/cocoa/string.h" +wxButtonBase::wxButtonBase() +{ +} + IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl) BEGIN_EVENT_TABLE(wxButton, wxButtonBase) END_EVENT_TABLE() diff --git a/src/cocoa/checkbox.mm b/src/cocoa/checkbox.mm index 04204304f1..d5a0e99f1d 100644 --- a/src/cocoa/checkbox.mm +++ b/src/cocoa/checkbox.mm @@ -22,6 +22,10 @@ #import #import +wxCheckBoxBase::wxCheckBoxBase() +{ +} + IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) BEGIN_EVENT_TABLE(wxCheckBox, wxCheckBoxBase) END_EVENT_TABLE()