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

@@ -222,7 +222,7 @@ protected:
bool m_connected;
wxDECLARE_NO_ASSIGN_CLASS(wxConnectionBase);
DECLARE_CLASS(wxConnectionBase)
wxDECLARE_CLASS(wxConnectionBase);
};
@@ -238,7 +238,7 @@ public:
// Callbacks to SERVER - override at will
virtual wxConnectionBase *OnAcceptConnection(const wxString& topic) = 0;
DECLARE_CLASS(wxServerBase)
wxDECLARE_CLASS(wxServerBase);
};
class WXDLLIMPEXP_BASE wxClientBase : public wxObject
@@ -257,7 +257,7 @@ public:
// Callbacks to CLIENT - override at will
virtual wxConnectionBase *OnMakeConnection() = 0;
DECLARE_CLASS(wxClientBase)
wxDECLARE_CLASS(wxClientBase);
};
#endif // _WX_IPCBASEH__