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:
@@ -218,7 +218,7 @@ private:
|
||||
typedef wxDList<wxDocument> DocsList;
|
||||
DocsList m_childDocuments;
|
||||
|
||||
DECLARE_ABSTRACT_CLASS(wxDocument)
|
||||
wxDECLARE_ABSTRACT_CLASS(wxDocument);
|
||||
wxDECLARE_NO_COPY_CLASS(wxDocument);
|
||||
};
|
||||
|
||||
@@ -291,7 +291,7 @@ protected:
|
||||
wxDocChildFrameAnyBase *m_docChildFrame;
|
||||
|
||||
private:
|
||||
DECLARE_ABSTRACT_CLASS(wxView)
|
||||
wxDECLARE_ABSTRACT_CLASS(wxView);
|
||||
wxDECLARE_NO_COPY_CLASS(wxView);
|
||||
};
|
||||
|
||||
@@ -376,7 +376,7 @@ protected:
|
||||
virtual wxView *DoCreateView();
|
||||
|
||||
private:
|
||||
DECLARE_CLASS(wxDocTemplate)
|
||||
wxDECLARE_CLASS(wxDocTemplate);
|
||||
wxDECLARE_NO_COPY_CLASS(wxDocTemplate);
|
||||
};
|
||||
|
||||
@@ -562,8 +562,8 @@ protected:
|
||||
wxPageSetupDialogData m_pageSetupDialogData;
|
||||
#endif // wxUSE_PRINTING_ARCHITECTURE
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
DECLARE_DYNAMIC_CLASS(wxDocManager)
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
wxDECLARE_DYNAMIC_CLASS(wxDocManager);
|
||||
wxDECLARE_NO_COPY_CLASS(wxDocManager);
|
||||
};
|
||||
|
||||
@@ -798,7 +798,7 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
DECLARE_CLASS(wxDocChildFrame)
|
||||
wxDECLARE_CLASS(wxDocChildFrame);
|
||||
wxDECLARE_NO_COPY_CLASS(wxDocChildFrame);
|
||||
};
|
||||
|
||||
@@ -950,7 +950,7 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
DECLARE_CLASS(wxDocParentFrame)
|
||||
wxDECLARE_CLASS(wxDocParentFrame);
|
||||
wxDECLARE_NO_COPY_CLASS(wxDocParentFrame);
|
||||
};
|
||||
|
||||
@@ -977,7 +977,7 @@ protected:
|
||||
wxView* m_printoutView;
|
||||
|
||||
private:
|
||||
DECLARE_DYNAMIC_CLASS(wxDocPrintout)
|
||||
wxDECLARE_DYNAMIC_CLASS(wxDocPrintout);
|
||||
wxDECLARE_NO_COPY_CLASS(wxDocPrintout);
|
||||
};
|
||||
#endif // wxUSE_PRINTING_ARCHITECTURE
|
||||
|
Reference in New Issue
Block a user