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:
@@ -127,7 +127,7 @@ private:
|
||||
wxTextCtrl *m_text;
|
||||
wxCheckBox *m_checkbox;
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
wxDECLARE_NO_COPY_CLASS(wxTipDialog);
|
||||
};
|
||||
|
||||
@@ -205,9 +205,9 @@ wxString wxFileTipProvider::GetTip()
|
||||
// wxTipDialog
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
BEGIN_EVENT_TABLE(wxTipDialog, wxDialog)
|
||||
wxBEGIN_EVENT_TABLE(wxTipDialog, wxDialog)
|
||||
EVT_BUTTON(wxID_NEXT_TIP, wxTipDialog::OnNextTip)
|
||||
END_EVENT_TABLE()
|
||||
wxEND_EVENT_TABLE()
|
||||
|
||||
wxTipDialog::wxTipDialog(wxWindow *parent,
|
||||
wxTipProvider *tipProvider,
|
||||
|
Reference in New Issue
Block a user