]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/valtext.h
disabled wxMBConv(wxFONTENCODING_UTF7) test -- it doesn't work under Unix with iconv()
[wxWidgets.git] / include / wx / valtext.h
index 0a047e199a9a364e975979530a3e34f9cc172f17..1bea80e06c4ad19564f46392e7681f83e3eae5be 100644 (file)
 #ifndef _WX_VALTEXTH__
 #define _WX_VALTEXTH__
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "valtext.h"
-#endif
-
 #include "wx/defs.h"
 
 #if wxUSE_VALIDATORS && wxUSE_TEXTCTRL
@@ -41,7 +37,7 @@ public:
     wxTextValidator(long style = wxFILTER_NONE, wxString *val = 0);
     wxTextValidator(const wxTextValidator& val);
 
-    ~wxTextValidator(){}
+    virtual ~wxTextValidator(){}
 
     // Make a clone of this validator (or return NULL) - currently necessary
     // if you're passing a reference to a validator.
@@ -57,7 +53,7 @@ public:
     // Called to transfer data to the window
     virtual bool TransferToWindow();
 
-    // Called to transfer data to the window
+    // Called to transfer data from the window
     virtual bool TransferFromWindow();
 
     // ACCESSORS
@@ -66,10 +62,10 @@ public:
 
 #if WXWIN_COMPATIBILITY_2_4
     wxDEPRECATED( void SetIncludeList(const wxStringList& list) );
-    wxDEPRECATED( inline wxStringList& GetIncludeList() );
+    wxDEPRECATED( wxStringList& GetIncludeList() );
 
     wxDEPRECATED( void SetExcludeList(const wxStringList& list) );
-    wxDEPRECATED( inline wxStringList& GetExcludeList() );
+    wxDEPRECATED( wxStringList& GetExcludeList() );
 
     wxDEPRECATED( bool IsInCharIncludeList(const wxString& val) );
     wxDEPRECATED( bool IsNotInCharExcludeList(const wxString& val) );
@@ -106,8 +102,6 @@ protected:
                      _T("No window associated with validator") );
         wxCHECK_MSG( m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl)), false,
                      _T("wxTextValidator is only for wxTextCtrl's") );
-        wxCHECK_MSG( m_stringValue, false,
-                     _T("No variable storage for validator") );
 
         return true;
     }