diff options
Diffstat (limited to 'src/gui/questswindow.h')
-rw-r--r-- | src/gui/questswindow.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/questswindow.h b/src/gui/questswindow.h index c35e395bd..8454b80f5 100644 --- a/src/gui/questswindow.h +++ b/src/gui/questswindow.h @@ -49,6 +49,8 @@ class QuestsWindow : public Window, public gcn::ActionListener */ QuestsWindow(); + ~QuestsWindow(); + /** * Called when receiving actions from the widgets. */ @@ -74,6 +76,8 @@ class QuestsWindow : public Window, public gcn::ActionListener std::map<int, int> mVars; std::map<int, std::vector<QuestItem*>> mQuests; std::vector<QuestItem*> mQuestLinks; + Image *mCompleteIcon; + Image *mIncompleteIcon; }; extern QuestsWindow *questsWindow; |