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:
@@ -83,7 +83,7 @@
|
||||
|
||||
|
||||
// Implement dynamic class for type value.
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxColourPropertyValue, wxObject)
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(wxColourPropertyValue, wxObject);
|
||||
|
||||
bool operator == (const wxColourPropertyValue& a, const wxColourPropertyValue& b)
|
||||
{
|
||||
@@ -441,7 +441,7 @@ bool wxPGSpinCtrlEditor::OnEvent( wxPropertyGrid* propgrid, wxPGProperty* proper
|
||||
|
||||
class wxPGDatePickerCtrlEditor : public wxPGEditor
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(wxPGDatePickerCtrlEditor)
|
||||
wxDECLARE_DYNAMIC_CLASS(wxPGDatePickerCtrlEditor);
|
||||
public:
|
||||
virtual ~wxPGDatePickerCtrlEditor();
|
||||
|
||||
@@ -1765,7 +1765,7 @@ static const long gs_cp_es_syscursors_values[NUM_CURSORS] = {
|
||||
wxCURSOR_ARROWWAIT
|
||||
};
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxCursorProperty, wxEnumProperty)
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(wxCursorProperty, wxEnumProperty);
|
||||
|
||||
static wxPGChoices gs_wxCursorProperty_choicesCache;
|
||||
|
||||
@@ -1883,7 +1883,7 @@ const wxString& wxPGGetDefaultImageWildcard()
|
||||
return wxPGGlobalVars->m_pDefaultImageWildcard;
|
||||
}
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxImageFileProperty, wxFileProperty)
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(wxImageFileProperty, wxFileProperty);
|
||||
|
||||
wxImageFileProperty::wxImageFileProperty( const wxString& label, const wxString& name,
|
||||
const wxString& value )
|
||||
|
||||
Reference in New Issue
Block a user