summaryrefslogtreecommitdiff
path: root/src/gui/questswindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-07-29 17:31:17 +0300
committerAndrei Karas <akaras@inbox.ru>2012-07-29 17:45:48 +0300
commita57d736348be038bcc1371b05dbc89459f87d045 (patch)
tree17b07752ede14f4e3ac2ef1a3d11284a0bbcaddf /src/gui/questswindow.h
parent9234bf25b145995d5395f98a1f5dd030783d25d6 (diff)
downloadplus-a57d736348be038bcc1371b05dbc89459f87d045.tar.gz
plus-a57d736348be038bcc1371b05dbc89459f87d045.tar.bz2
plus-a57d736348be038bcc1371b05dbc89459f87d045.tar.xz
plus-a57d736348be038bcc1371b05dbc89459f87d045.zip
Add icons to quests window.
Fix memory leak in extendednamesmodel.
Diffstat (limited to 'src/gui/questswindow.h')
-rw-r--r--src/gui/questswindow.h4
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;