1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/validate.cpp
3 // Purpose: wxValidator
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/validate.h"
24 #include "wx/window.h"
27 const wxValidator wxDefaultValidator
;
29 IMPLEMENT_DYNAMIC_CLASS(wxValidator
, wxEvtHandler
)
31 // VZ: personally, I think true would be more appropriate - these bells are
33 bool wxValidator::ms_isSilent
= false;
35 wxValidator::wxValidator()
37 m_validatorWindow
= (wxWindow
*) NULL
;
40 wxValidator::~wxValidator()