diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-28 21:29:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-28 21:45:47 +0300 |
commit | 0b7ef18ac3c7fb4e3717f6311d4e21a31ff440d5 (patch) | |
tree | 6ed783279483538799567c38c2818c5dd136e302 /src/actionmanager.cpp | |
parent | bb87f2911b63eaf80e49d689bf52ecf2042ae098 (diff) | |
download | plus-0b7ef18ac3c7fb4e3717f6311d4e21a31ff440d5.tar.gz plus-0b7ef18ac3c7fb4e3717f6311d4e21a31ff440d5.tar.bz2 plus-0b7ef18ac3c7fb4e3717f6311d4e21a31ff440d5.tar.xz plus-0b7ef18ac3c7fb4e3717f6311d4e21a31ff440d5.zip |
Move dialogs related function into separate file.
Diffstat (limited to 'src/actionmanager.cpp')
-rw-r--r-- | src/actionmanager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/actionmanager.cpp b/src/actionmanager.cpp index c751c9530..12e13845a 100644 --- a/src/actionmanager.cpp +++ b/src/actionmanager.cpp @@ -34,6 +34,7 @@ #include "input/inputmanager.h" +#include "gui/dialogsmanager.h" #include "gui/gui.h" #include "gui/sdlinput.h" #include "gui/viewport.h" @@ -869,7 +870,7 @@ impHandler0(updaterWindowShow) if (updaterWindow) updaterWindow->deleteSelf(); else - Game::createUpdaterWindow(); + DialogsManager::createUpdaterWindow(); return true; } |