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:
6
Externals/wxWidgets3/include/wx/pickerbase.h
vendored
6
Externals/wxWidgets3/include/wx/pickerbase.h
vendored
@ -5,7 +5,6 @@
|
||||
// Modified by:
|
||||
// Created: 14/4/2006
|
||||
// Copyright: (c) Vadim Zeitlin, Francesco Montorsi
|
||||
// RCS-ID: $Id: pickerbase.h 68921 2011-08-27 14:11:25Z VZ $
|
||||
// Licence: wxWindows Licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@ -106,6 +105,11 @@ public: // public API
|
||||
wxControl *GetPickerCtrl()
|
||||
{ return m_picker; }
|
||||
|
||||
void SetTextCtrl(wxTextCtrl* text)
|
||||
{ m_text = text; }
|
||||
void SetPickerCtrl(wxControl* picker)
|
||||
{ m_picker = picker; }
|
||||
|
||||
// methods that derived class must/may override
|
||||
virtual void UpdatePickerFromTextCtrl() = 0;
|
||||
virtual void UpdateTextCtrlFromPicker() = 0;
|
||||
|
Reference in New Issue
Block a user