]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/valtext.cpp
* Bug fixed in CountTokens()
[wxWidgets.git] / src / common / valtext.cpp
index 4f1740a7499d2cfe82306e4d74345eeb13d63fed..a3b027ea0acf5160d7c374450a0dcc566da5ec03 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
 
 #ifndef WX_PRECOMP
-    #include <stdio.h>
-    #include "wx/textctrl.h"
-    #include "wx/utils.h"
-    #include "wx/msgdlg.h"
-    #include "wx/intl.h"
+  #include "wx/defs.h"
+#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"
 #endif
 
 #include "wx/valtext.h"
@@ -129,7 +135,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 +312,6 @@ static bool wxIsNumeric(const wxString& val)
     return TRUE;
 }
 
+#endif
+  // wxUSE_VALIDATORS
+  
\ No newline at end of file