mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Upgrade WX to r74856, mainly to support @2x.
This commit is contained in:
8
Externals/wxWidgets3/include/wx/validate.h
vendored
8
Externals/wxWidgets3/include/wx/validate.h
vendored
@ -4,7 +4,6 @@
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Created: 29/01/98
|
||||
// RCS-ID: $Id: validate.h 66966 2011-02-19 12:32:59Z VZ $
|
||||
// Copyright: (c) 1998 Julian Smart
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
@ -37,6 +36,11 @@ class WXDLLIMPEXP_CORE wxValidator : public wxEvtHandler
|
||||
{
|
||||
public:
|
||||
wxValidator();
|
||||
wxValidator(const wxValidator& other)
|
||||
: wxEvtHandler()
|
||||
, m_validatorWindow(other.m_validatorWindow)
|
||||
{
|
||||
}
|
||||
virtual ~wxValidator();
|
||||
|
||||
// Make a clone of this validator (or return NULL) - currently necessary
|
||||
@ -87,7 +91,7 @@ private:
|
||||
static bool ms_isSilent;
|
||||
|
||||
DECLARE_DYNAMIC_CLASS(wxValidator)
|
||||
wxDECLARE_NO_COPY_CLASS(wxValidator);
|
||||
wxDECLARE_NO_ASSIGN_CLASS(wxValidator);
|
||||
};
|
||||
|
||||
extern WXDLLIMPEXP_DATA_CORE(const wxValidator) wxDefaultValidator;
|
||||
|
Reference in New Issue
Block a user