Revert erroneous change in 7d8380cd87

These functions don't inherit from the dialog classes, they're part of MVC-style implementations.
This commit is contained in:
Charles Dang 2017-04-12 17:56:52 +11:00
parent 7d8380cd87
commit 4f76c90d5c
2 changed files with 3 additions and 3 deletions

View file

@ -355,7 +355,7 @@ public:
{
}
virtual void pre_show()
void pre_show()
{
LOG_CHAT_LOG << "Entering chat_log::view::pre_show" << std::endl;
controller_.update_view_from_model(true);

View file

@ -322,7 +322,7 @@ public:
{
}
virtual void pre_show(window& window)
void pre_show(window& window)
{
model_.clear_sides();
controller_.show_sides_list();
@ -380,7 +380,7 @@ public:
#endif
}
virtual void post_show(int retval, events::menu_handler* mh)
void post_show(int retval, events::menu_handler* mh)
{
if(retval == window::OK) {
controller_.change_control(mh);