]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/textdlgg.cpp
simplify Refresh() and Update()
[wxWidgets.git] / src / generic / textdlgg.cpp
index 50ea1ad378c70b41754b185d04ca26b129f08b04..16cfd7d9d5420bbe18575422cfec625275b5a93e 100644 (file)
@@ -151,7 +151,15 @@ void wxTextEntryDialog::SetValue(const wxString& val)
 }
 
 #if wxUSE_VALIDATORS
+
+#if WXWIN_COMPATIBILITY_2_8
 void wxTextEntryDialog::SetTextValidator( long style )
+{
+    SetTextValidator((wxTextValidatorStyle)style);
+}
+#endif
+
+void wxTextEntryDialog::SetTextValidator( wxTextValidatorStyle style )
 {
     wxTextValidator validator( style, &m_value );
     m_textctrl->SetValidator( validator );