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:
@@ -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__
|
||||
|
Reference in New Issue
Block a user