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:
parent
7d8380cd87
commit
4f76c90d5c
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue