]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/valtext.h
Implement GetDashCount() for Carbon/Cocoa.
[wxWidgets.git] / include / wx / valtext.h
index 62c762990d878c834c2092e602aff3b4ad022b61..955a7f38f80cd0f1149f444922213f0056305922 100644 (file)
@@ -78,14 +78,14 @@ public:
     inline wxArrayString& GetExcludes() { return m_excludes; }
 
     bool HasFlag(wxTextValidatorStyle style) const
-        { return m_validatorStyle & style; }
+        { return (m_validatorStyle & style) != 0; }
 
 protected:
 
     // returns true if all characters of the given string are present in m_includes
     bool ContainsOnlyIncludedCharacters(const wxString& val) const;
 
-    // returns true if all characters of the given string are NOT present in m_excludes
+    // returns true if at least one character of the given string is present in m_excludes
     bool ContainsExcludedCharacters(const wxString& val) const;
 
     // returns the error message if the contents of 'val' are invalid