]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/valtext.cpp
Added GSocket_Init and GSocket_Cleanup
[wxWidgets.git] / src / common / valtext.cpp
index 4f1740a7499d2cfe82306e4d74345eeb13d63fed..f891889826b97db693fe8897702d9fea694522b2 100644 (file)
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
-    #pragma implementation "valtext.h"
+#pragma implementation "valtext.h"
 #endif
 
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
-    #pragma hdrstop
+  #pragma hdrstop
 #endif
 
+#if wxUSE_VALIDATORS
+
 #ifndef WX_PRECOMP
-    #include <stdio.h>
-    #include "wx/textctrl.h"
-    #include "wx/utils.h"
-    #include "wx/msgdlg.h"
-    #include "wx/intl.h"
+  #include <stdio.h>
+  #include "wx/textctrl.h"
+  #include "wx/utils.h"
+  #include "wx/msgdlg.h"
+  #include "wx/intl.h"
 #endif
 
 #include "wx/valtext.h"
@@ -129,7 +131,7 @@ bool wxTextValidator::Validate(wxWindow *parent)
     wxTextCtrl *control = (wxTextCtrl *) m_validatorWindow ;
 
     // If window is disabled, simply return
-    if ( !control->Enabled() )
+    if ( !control->IsEnabled() )
         return TRUE;
 
     wxString val(control->GetValue());
@@ -306,3 +308,6 @@ static bool wxIsNumeric(const wxString& val)
     return TRUE;
 }
 
+#endif
+  // wxUSE_VALIDATORS
+  
\ No newline at end of file