]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/valtext.cpp
A few weeks of Unicode fixes (my old win95 laptop compiles sloowly,
[wxWidgets.git] / src / common / valtext.cpp
index 7767ae2f185d13db4716a079f2293e06d56abe94..bb83543bb10266717f9dbdd0689725d0bc8709dd 100644 (file)
@@ -75,14 +75,14 @@ bool wxTextValidator::Copy(const wxTextValidator& val)
     wxNode *node = val.m_includeList.First() ;
     while ( node )
     {
-        char *s = (char *)node->Data();
+        wxChar *s = (wxChar *)node->Data();
         m_includeList.Add(s);
         node = node->Next();
     }
     node = val.m_excludeList.First() ;
     while ( node )
     {
-        char *s = (char *)node->Data();
+        wxChar *s = (wxChar *)node->Data();
         m_excludeList.Add(s);
         node = node->Next();
     }
@@ -129,7 +129,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());
@@ -137,7 +137,7 @@ bool wxTextValidator::Validate(wxWindow *parent)
     bool ok = TRUE;
 
     // this format string should contian exactly one '%s'
-    const char *errormsg = _("'%s' is invalid");
+    const wxChar *errormsg = _("'%s' is invalid");
 
     if ( m_validatorStyle & wxFILTER_INCLUDE_LIST )
     {
@@ -236,7 +236,7 @@ void wxTextValidator::SetIncludeList(const wxStringList& list)
     wxNode *node = list.First() ;
     while ( node )
     {
-        char *s = (char *)node->Data();
+        wxChar *s = (wxChar *)node->Data();
         m_includeList.Add(s);
         node = node->Next();
     }
@@ -254,7 +254,7 @@ void wxTextValidator::SetExcludeList(const wxStringList& list)
     wxNode *node = list.First() ;
     while ( node )
     {
-        char *s = (char *)node->Data();
+        wxChar *s = (wxChar *)node->Data();
         m_excludeList.Add(s);
         node = node->Next();
     }