X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12028905135250524409f1e7b9bfa9c55e5ce16b..5687a67ce1e365d010c6282aa57b4f99f7f5ea29:/include/wx/valtext.h diff --git a/include/wx/valtext.h b/include/wx/valtext.h index 47ed43d83d..84afe2601e 100644 --- a/include/wx/valtext.h +++ b/include/wx/valtext.h @@ -6,7 +6,7 @@ // Created: 29/01/98 // RCS-ID: $Id$ // Copyright: (c) 1998 Julian Smart -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_VALTEXTH__ @@ -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: