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
This commit is contained in:
David Elliott
2004-01-14 03:52:50 +00:00
parent ffb649e4c6
commit 096a56242d
2 changed files with 8 additions and 0 deletions

View File

@@ -21,6 +21,10 @@
#import <AppKit/NSButton.h>
#include "wx/cocoa/string.h"
wxButtonBase::wxButtonBase()
{
}
IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
BEGIN_EVENT_TABLE(wxButton, wxButtonBase)
END_EVENT_TABLE()

View File

@@ -22,6 +22,10 @@
#import <AppKit/NSButton.h>
#import <Foundation/NSString.h>
wxCheckBoxBase::wxCheckBoxBase()
{
}
IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl)
BEGIN_EVENT_TABLE(wxCheckBox, wxCheckBoxBase)
END_EVENT_TABLE()