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:
Dimitri Schoolwerth
2015-04-23 15:49:01 +04:00
parent 2d3f617b34
commit 8f8d58d193
1697 changed files with 3543 additions and 3543 deletions

View File

@@ -73,7 +73,7 @@ public:
*/
IMPLEMENT_DYNAMIC_CLASS(wxContextHelp, wxObject)
wxIMPLEMENT_DYNAMIC_CLASS(wxContextHelp, wxObject);
wxContextHelp::wxContextHelp(wxWindow* win, bool beginHelp)
{
@@ -267,11 +267,11 @@ static const char * csquery_xpm[] = {
" "};
IMPLEMENT_CLASS(wxContextHelpButton, wxBitmapButton)
wxIMPLEMENT_CLASS(wxContextHelpButton, wxBitmapButton);
BEGIN_EVENT_TABLE(wxContextHelpButton, wxBitmapButton)
wxBEGIN_EVENT_TABLE(wxContextHelpButton, wxBitmapButton)
EVT_BUTTON(wxID_CONTEXT_HELP, wxContextHelpButton::OnContextHelp)
END_EVENT_TABLE()
wxEND_EVENT_TABLE()
bool wxContextHelpButton::Create(wxWindow* parent,
wxWindowID id,
@@ -476,10 +476,10 @@ public:
void OnExit() wxOVERRIDE;
private:
DECLARE_DYNAMIC_CLASS(wxHelpProviderModule)
wxDECLARE_DYNAMIC_CLASS(wxHelpProviderModule);
};
IMPLEMENT_DYNAMIC_CLASS(wxHelpProviderModule, wxModule)
wxIMPLEMENT_DYNAMIC_CLASS(wxHelpProviderModule, wxModule);
bool wxHelpProviderModule::OnInit()
{