build fixes for wxUSE_VALIDATORS==0
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62042 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -276,11 +276,12 @@ wxPGWindowList wxPGSpinCtrlEditor::CreateControls( wxPropertyGrid* propgrid, wxP
|
||||
wnd2->SetRange( INT_MIN, INT_MAX );
|
||||
wnd2->SetValue( 0 );
|
||||
|
||||
wxWindow* wnd1 = wxPGTextCtrlEditor::CreateControls(propgrid, property, pos, tcSz).m_primary;
|
||||
#if wxUSE_VALIDATORS
|
||||
// Let's add validator to make sure only numbers can be entered
|
||||
wxTextValidator validator(wxFILTER_NUMERIC, &m_tempString);
|
||||
|
||||
wxTextCtrl* wnd1 = (wxTextCtrl*) wxPGTextCtrlEditor::CreateControls( propgrid, property, pos, tcSz ).m_primary;
|
||||
wnd1->SetValidator(validator);
|
||||
#endif
|
||||
|
||||
return wxPGWindowList(wnd1, wnd2);
|
||||
}
|
||||
|
Reference in New Issue
Block a user