// Created: 29/01/98
// RCS-ID: $Id$
// Copyright: (c) 1998 Julian Smart
-// Licence: wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_VALTEXTH__
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.
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: