diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-16 17:26:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-16 17:26:23 +0300 |
commit | b2c84fc1db9284acdd0bf5fc344e9d2435d7f45d (patch) | |
tree | 3b0b8a45aad3e1937db8907792d425df05559335 /src/gui | |
parent | 396b3e298b21677ebe3c6f5c2f5b837ac25625f2 (diff) | |
download | plus-b2c84fc1db9284acdd0bf5fc344e9d2435d7f45d.tar.gz plus-b2c84fc1db9284acdd0bf5fc344e9d2435d7f45d.tar.bz2 plus-b2c84fc1db9284acdd0bf5fc344e9d2435d7f45d.tar.xz plus-b2c84fc1db9284acdd0bf5fc344e9d2435d7f45d.zip |
Move questitemtext into separate file.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/windows/questswindow.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/gui/windows/questswindow.cpp b/src/gui/windows/questswindow.cpp index c32d8e928..de7c62116 100644 --- a/src/gui/windows/questswindow.cpp +++ b/src/gui/windows/questswindow.cpp @@ -47,6 +47,7 @@ #include "utils/translation/podict.h" #include "resources/beingcommon.h" +#include "resources/questitemtext.h" #include "resources/map/map.h" @@ -59,17 +60,6 @@ enum QuestType QUEST_REWARD = 2 }; -struct QuestItemText final -{ - QuestItemText(const std::string &text0, const int type0) : - text(text0), type(type0) - { - } - - std::string text; - int type; -}; - struct QuestItem final { QuestItem() : |