replace this->Bind with Bind

This commit is contained in:
Jordan Woyak 2013-01-13 03:33:11 -06:00
parent 6e5c26a3d4
commit 5dbc3b3219
2 changed files with 4 additions and 4 deletions

View file

@ -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);
}