Use wx-prefixed macros throughout the repository.
Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE occurrences to use the wx-prefixed version of the macros.
This commit is contained in:
@@ -922,7 +922,7 @@ bool Life::NextTic()
|
||||
|
||||
class LifeModule: public wxModule
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(LifeModule)
|
||||
wxDECLARE_DYNAMIC_CLASS(LifeModule);
|
||||
|
||||
public:
|
||||
LifeModule() {};
|
||||
@@ -930,7 +930,7 @@ public:
|
||||
void OnExit();
|
||||
};
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(LifeModule, wxModule)
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(LifeModule, wxModule);
|
||||
|
||||
bool LifeModule::OnInit()
|
||||
{
|
||||
|
Reference in New Issue
Block a user