]> git.saurik.com Git - wxWidgets.git/commitdiff
Added empty base class constructors. This will still be broken for anything
authorDavid Elliott <dfe@tgwbd.org>
Wed, 14 Jan 2004 03:52:50 +0000 (03:52 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Wed, 14 Jan 2004 03:52:50 +0000 (03:52 +0000)
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

src/cocoa/button.mm
src/cocoa/checkbox.mm

index 7b93013217cb15932c6238b39e7a38406a41fb49..5bf61552c3b0d2093f87b3a97d9522b2b530dab3 100644 (file)
 #import <AppKit/NSButton.h>
 #include "wx/cocoa/string.h"
 
+wxButtonBase::wxButtonBase()
+{
+}
+
 IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
 BEGIN_EVENT_TABLE(wxButton, wxButtonBase)
 END_EVENT_TABLE()
index 04204304f11c7d3f63916a1ba5babd32b9341982..d5a0e99f1d2ddf4fcbb8034217e11d23c13fd0db 100644 (file)
 #import <AppKit/NSButton.h>
 #import <Foundation/NSString.h>
 
+wxCheckBoxBase::wxCheckBoxBase()
+{
+}
+
 IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl)
 BEGIN_EVENT_TABLE(wxCheckBox, wxCheckBoxBase)
 END_EVENT_TABLE()