diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-18 21:23:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-18 21:23:47 +0300 |
commit | 2f548dd7865863a8cc774d485bef30bfc9b50b6d (patch) | |
tree | 5c0bb522b5f5ddd2171cdbe64127122c23d57f82 /src/gui/questswindow.h | |
parent | e9c0ad590dc46f70e0ab8f48b4fa3c0532314d7f (diff) | |
download | plus-2f548dd7865863a8cc774d485bef30bfc9b50b6d.tar.gz plus-2f548dd7865863a8cc774d485bef30bfc9b50b6d.tar.bz2 plus-2f548dd7865863a8cc774d485bef30bfc9b50b6d.tar.xz plus-2f548dd7865863a8cc774d485bef30bfc9b50b6d.zip |
improve questswindow class.
Diffstat (limited to 'src/gui/questswindow.h')
-rw-r--r-- | src/gui/questswindow.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/gui/questswindow.h b/src/gui/questswindow.h index 8872189cb..c38522172 100644 --- a/src/gui/questswindow.h +++ b/src/gui/questswindow.h @@ -47,23 +47,16 @@ struct QuestItem; typedef std::map<int, const QuestEffect*> NpcQuestEffectMap; typedef NpcQuestEffectMap::const_iterator NpcQuestEffectMapCIter; -class QuestsWindow final : public Window, public gcn::ActionListener +class QuestsWindow final : public Window, + public gcn::ActionListener { public: - /** - * Constructor. - * - * @see Window::Window - */ QuestsWindow(); A_DELETE_COPY(QuestsWindow) ~QuestsWindow(); - /** - * Called when receiving actions from the widgets. - */ void action(const gcn::ActionEvent &event) override; void updateQuest(const int var, const int val); |