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:
@@ -122,7 +122,7 @@ public:
|
||||
class WXDLLIMPEXP_RICHTEXT wxRichTextFormattingDialog: public wxPropertySheetDialog,
|
||||
public wxWithImages
|
||||
{
|
||||
DECLARE_CLASS(wxRichTextFormattingDialog)
|
||||
wxDECLARE_CLASS(wxRichTextFormattingDialog);
|
||||
DECLARE_HELP_PROVISION()
|
||||
|
||||
public:
|
||||
@@ -273,7 +273,7 @@ protected:
|
||||
static bool sm_restoreLastPage;
|
||||
static int sm_lastPage;
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
@@ -292,7 +292,7 @@ private:
|
||||
int m_textEffects;
|
||||
|
||||
void OnPaint(wxPaintEvent& event);
|
||||
DECLARE_EVENT_TABLE()
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
};
|
||||
|
||||
/*
|
||||
@@ -301,7 +301,7 @@ private:
|
||||
|
||||
class WXDLLIMPEXP_RICHTEXT wxRichTextColourSwatchCtrl: public wxControl
|
||||
{
|
||||
DECLARE_CLASS(wxRichTextColourSwatchCtrl)
|
||||
wxDECLARE_CLASS(wxRichTextColourSwatchCtrl);
|
||||
public:
|
||||
wxRichTextColourSwatchCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0);
|
||||
~wxRichTextColourSwatchCtrl();
|
||||
@@ -317,7 +317,7 @@ public:
|
||||
protected:
|
||||
wxColour m_colour;
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
};
|
||||
|
||||
/*!
|
||||
@@ -327,8 +327,8 @@ DECLARE_EVENT_TABLE()
|
||||
|
||||
class WXDLLIMPEXP_RICHTEXT wxRichTextFontListBox: public wxHtmlListBox
|
||||
{
|
||||
DECLARE_CLASS(wxRichTextFontListBox)
|
||||
DECLARE_EVENT_TABLE()
|
||||
wxDECLARE_CLASS(wxRichTextFontListBox);
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
|
||||
public:
|
||||
wxRichTextFontListBox()
|
||||
|
Reference in New Issue
Block a user