X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/371a5b4e62eb415107e045588f614fa49e866e78..ababa106ae015f05e14cd2487100954ef50ca694:/include/wx/valtext.h?ds=sidebyside diff --git a/include/wx/valtext.h b/include/wx/valtext.h index 42b08aa0bf..84afe2601e 100644 --- a/include/wx/valtext.h +++ b/include/wx/valtext.h @@ -6,19 +6,19 @@ // Created: 29/01/98 // RCS-ID: $Id$ // Copyright: (c) 1998 Julian Smart -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_VALTEXTH__ #define _WX_VALTEXTH__ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "valtext.h" #endif #include "wx/defs.h" -#if wxUSE_VALIDATORS +#if wxUSE_VALIDATORS && wxUSE_TEXTCTRL #include "wx/textctrl.h" #include "wx/validate.h" @@ -41,7 +41,7 @@ public: wxTextValidator(long style = wxFILTER_NONE, wxString *val = 0); wxTextValidator(const wxTextValidator& val); - ~wxTextValidator(); + ~wxTextValidator(){} // Make a clone of this validator (or return NULL) - currently necessary // if you're passing a reference to a validator. @@ -86,14 +86,14 @@ protected: bool CheckValidator() const { - wxCHECK_MSG( m_validatorWindow, FALSE, + wxCHECK_MSG( m_validatorWindow, false, _T("No window associated with validator") ); - wxCHECK_MSG( m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl)), FALSE, + wxCHECK_MSG( m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl)), false, _T("wxTextValidator is only for wxTextCtrl's") ); - wxCHECK_MSG( m_stringValue, FALSE, + wxCHECK_MSG( m_stringValue, false, _T("No variable storage for validator") ); - return TRUE; + return true; } private: @@ -106,7 +106,7 @@ private: }; #endif - // wxUSE_VALIDATORS + // wxUSE_VALIDATORS && wxUSE_TEXTCTRL #endif // _WX_VALTEXTH__