diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-16 01:33:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-16 01:33:51 +0300 |
commit | 7ead3ed1acfa3f34f017552f1eac918685a1414a (patch) | |
tree | 1f71f5a17e328d69feaede142730e27fa0bbccf9 | |
parent | d87cc140a5e46d417d670c470c3ceaf54c2dfbf5 (diff) | |
download | plus-7ead3ed1acfa3f34f017552f1eac918685a1414a.tar.gz plus-7ead3ed1acfa3f34f017552f1eac918685a1414a.tar.bz2 plus-7ead3ed1acfa3f34f017552f1eac918685a1414a.tar.xz plus-7ead3ed1acfa3f34f017552f1eac918685a1414a.zip |
Fix compilation without C++11 flags.
-rw-r--r-- | src/gui/widgets/shoplistbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/shoplistbox.h b/src/gui/widgets/shoplistbox.h index 471f6eadc..38b988bfa 100644 --- a/src/gui/widgets/shoplistbox.h +++ b/src/gui/widgets/shoplistbox.h @@ -91,7 +91,7 @@ class ShopListBox final : public ListBox void setType(const ShopListBoxTypeT type) { mType = type; } - ShopListBoxType getType() const + ShopListBoxTypeT getType() const { return mType; } private: |