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:
@@ -45,7 +45,7 @@ const char wxDirPickerWidgetLabel[] = wxTRANSLATE("Browse");
|
||||
|
||||
wxDEFINE_EVENT( wxEVT_FILEPICKER_CHANGED, wxFileDirPickerEvent );
|
||||
wxDEFINE_EVENT( wxEVT_DIRPICKER_CHANGED, wxFileDirPickerEvent );
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxFileDirPickerEvent, wxCommandEvent)
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(wxFileDirPickerEvent, wxCommandEvent);
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxFileDirPickerCtrlBase
|
||||
@@ -175,7 +175,7 @@ void wxFileDirPickerCtrlBase::OnFileDirChange(wxFileDirPickerEvent &ev)
|
||||
|
||||
#if wxUSE_FILEPICKERCTRL
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxFilePickerCtrl, wxPickerBase)
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(wxFilePickerCtrl, wxPickerBase);
|
||||
|
||||
bool wxFilePickerCtrl::Create(wxWindow *parent,
|
||||
wxWindowID id,
|
||||
@@ -214,7 +214,7 @@ wxString wxFilePickerCtrl::GetTextCtrlValue() const
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#if wxUSE_DIRPICKERCTRL
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxDirPickerCtrl, wxPickerBase)
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(wxDirPickerCtrl, wxPickerBase);
|
||||
|
||||
bool wxDirPickerCtrl::Create(wxWindow *parent,
|
||||
wxWindowID id,
|
||||
|
||||
Reference in New Issue
Block a user