mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-09 20:52:40 +00:00
replace this->Bind with Bind
This commit is contained in:
parent
6e5c26a3d4
commit
5dbc3b3219
2 changed files with 4 additions and 4 deletions
|
@ -28,7 +28,7 @@ IntegerSetting<T>::IntegerSetting(wxWindow* parent, const wxString& label, T& se
|
|||
{
|
||||
SetRange(minVal, maxVal);
|
||||
SetValue(m_setting);
|
||||
this->Bind(wxEVT_COMMAND_SPINCTRL_UPDATED, &IntegerSetting::UpdateValue, this);
|
||||
Bind(wxEVT_COMMAND_SPINCTRL_UPDATED, &IntegerSetting::UpdateValue, this);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue