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:
@@ -111,7 +111,7 @@ public:
|
||||
|
||||
|
||||
// Put this class on wxWidget's RTTI table
|
||||
DECLARE_DYNAMIC_CLASS(wxMediaEvent)
|
||||
wxDECLARE_DYNAMIC_CLASS(wxMediaEvent);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@@ -228,7 +228,7 @@ protected:
|
||||
class wxMediaBackend* m_imp;
|
||||
bool m_bLoaded;
|
||||
|
||||
DECLARE_DYNAMIC_CLASS(wxMediaCtrl)
|
||||
wxDECLARE_DYNAMIC_CLASS(wxMediaCtrl);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@@ -236,7 +236,7 @@ protected:
|
||||
// wxMediaBackend
|
||||
//
|
||||
// Derive from this and use standard wxWidgets RTTI
|
||||
// (DECLARE_DYNAMIC_CLASS and IMPLEMENT_CLASS) to make a backend
|
||||
// (wxDECLARE_DYNAMIC_CLASS and wxIMPLEMENT_CLASS) to make a backend
|
||||
// for wxMediaCtrl. Backends are searched alphabetically -
|
||||
// the one with the earliest letter is tried first.
|
||||
//
|
||||
@@ -320,7 +320,7 @@ public:
|
||||
{ }
|
||||
virtual void RESERVED9() {}
|
||||
|
||||
DECLARE_DYNAMIC_CLASS(wxMediaBackend)
|
||||
wxDECLARE_DYNAMIC_CLASS(wxMediaBackend);
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user