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:
@@ -270,7 +270,7 @@ private:
|
||||
|
||||
|
||||
wxDECLARE_NO_COPY_CLASS(wxDialogBase);
|
||||
DECLARE_EVENT_TABLE()
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
};
|
||||
|
||||
/*!
|
||||
@@ -282,7 +282,7 @@ private:
|
||||
|
||||
class WXDLLIMPEXP_CORE wxDialogLayoutAdapter: public wxObject
|
||||
{
|
||||
DECLARE_CLASS(wxDialogLayoutAdapter)
|
||||
wxDECLARE_CLASS(wxDialogLayoutAdapter);
|
||||
public:
|
||||
wxDialogLayoutAdapter() {}
|
||||
|
||||
@@ -300,7 +300,7 @@ public:
|
||||
|
||||
class WXDLLIMPEXP_CORE wxStandardDialogLayoutAdapter: public wxDialogLayoutAdapter
|
||||
{
|
||||
DECLARE_CLASS(wxStandardDialogLayoutAdapter)
|
||||
wxDECLARE_CLASS(wxStandardDialogLayoutAdapter);
|
||||
public:
|
||||
wxStandardDialogLayoutAdapter() {}
|
||||
|
||||
@@ -380,7 +380,7 @@ public:
|
||||
virtual wxEvent *Clone() const wxOVERRIDE { return new wxWindowModalDialogEvent (*this); }
|
||||
|
||||
private:
|
||||
DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowModalDialogEvent )
|
||||
wxDECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowModalDialogEvent);
|
||||
};
|
||||
|
||||
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_WINDOW_MODAL_DIALOG_CLOSED , wxWindowModalDialogEvent );
|
||||
|
Reference in New Issue
Block a user