summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-10-05 00:08:11 +0300
committerAndrei Karas <akaras@inbox.ru>2016-10-05 00:08:11 +0300
commit1d99b1b7caca8c41c74f01a3920ef432f0f00c18 (patch)
tree4a89ba617846fbc34617b6c799a2bd10df9e68ae
parent360fac210a053c3217cc87a43ed00e2734ba9aa9 (diff)
downloadplus-1d99b1b7caca8c41c74f01a3920ef432f0f00c18.tar.gz
plus-1d99b1b7caca8c41c74f01a3920ef432f0f00c18.tar.bz2
plus-1d99b1b7caca8c41c74f01a3920ef432f0f00c18.tar.xz
plus-1d99b1b7caca8c41c74f01a3920ef432f0f00c18.zip
Fix compilation without C++11 flags.
-rw-r--r--src/gui/windows/npcdialog.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/windows/npcdialog.h b/src/gui/windows/npcdialog.h
index 429cf95c7..4bdb2b0bf 100644
--- a/src/gui/windows/npcdialog.h
+++ b/src/gui/windows/npcdialog.h
@@ -231,7 +231,7 @@ class NpcDialog final : public Window,
const int amount,
const int slot);
- NpcInputState getInputState()
+ NpcInputStateT getInputState()
{ return mInputState; }
void copyToClipboard(const int x, const int y) const;
@@ -306,7 +306,6 @@ class NpcDialog final : public Window,
ItemContainer *mItemContainer A_NONNULLPOINTER;
ScrollArea *mItemScrollArea A_NONNULLPOINTER;
-
NpcInputStateT mInputState;
NpcActionStateT mActionState;
std::vector<Widget*> mSkinControls;