toggeled -> toggled
This commit is contained in:
parent
07b5b4e3f3
commit
1573476c3d
2 changed files with 3 additions and 3 deletions
|
@ -189,7 +189,7 @@ void tcampaign_selection::pre_show(CVideo& video, twindow& window)
|
|||
VALIDATE(checkbox, missing_widget("checkb"));
|
||||
checkbox->set_value(active);
|
||||
checkbox->set_label(mod->name);
|
||||
checkbox->set_callback_state_change(boost::bind(&tcampaign_selection::mod_toggeled, this, id, _1));
|
||||
checkbox->set_callback_state_change(boost::bind(&tcampaign_selection::mod_toggled, this, id, _1));
|
||||
++id;
|
||||
}
|
||||
}
|
||||
|
@ -293,7 +293,7 @@ void tcampaign_selection::post_show(twindow& window)
|
|||
}
|
||||
}
|
||||
|
||||
void tcampaign_selection::mod_toggeled(int id, twidget&)
|
||||
void tcampaign_selection::mod_toggled(int id, twidget &)
|
||||
{
|
||||
engine_.set_current_mod_index(id);
|
||||
engine_.toggle_current_mod();
|
||||
|
|
|
@ -61,7 +61,7 @@ private:
|
|||
void post_show(twindow& window);
|
||||
|
||||
|
||||
void mod_toggeled(int id, twidget&);
|
||||
void mod_toggled(int id, twidget &);
|
||||
|
||||
ng::create_engine& engine_;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue