tsynced_choice_wait: removed a CVideo argument from pre_show missed in 11b941ab58

This commit is contained in:
Charles Dang 2016-03-15 04:55:45 +11:00
parent 0f39cc3fe0
commit b311135482
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ tsynced_choice_wait::~tsynced_choice_wait()
mgr_.changed_event_.detach_handler(this);
}
void tsynced_choice_wait::pre_show(CVideo& /*video*/, twindow& window)
void tsynced_choice_wait::pre_show(twindow& window)
{
window_ = &window;
message_ = find_widget<tlabel>(&window, "lblMessage", false, true);

View file

@ -35,7 +35,7 @@ private:
virtual const std::string& window_id() const;
/** Inherited from tdialog. */
void pre_show(CVideo& video, twindow& window);
void pre_show(twindow& window);
virtual void handle_generic_event(const std::string& event_name);
};