Files
wxWidgets/src/common/validate.cpp
Dimitri Schoolwerth 8f8d58d193 Use wx-prefixed macros throughout the repository.
Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
2015-04-23 22:00:35 +04:00

45 lines
949 B
C++

/////////////////////////////////////////////////////////////////////////////
// Name: src/common/validate.cpp
// Purpose: wxValidator
// Author: Julian Smart
// Modified by:
// Created: 04/01/98
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#if wxUSE_VALIDATORS
#include "wx/validate.h"
#ifndef WX_PRECOMP
#include "wx/window.h"
#endif
const wxValidator wxDefaultValidator;
wxIMPLEMENT_DYNAMIC_CLASS(wxValidator, wxEvtHandler);
// VZ: personally, I think true would be more appropriate - these bells are
// _annoying_
bool wxValidator::ms_isSilent = false;
wxValidator::wxValidator()
{
m_validatorWindow = NULL;
}
wxValidator::~wxValidator()
{
}
#endif
// wxUSE_VALIDATORS