summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHal9000 <miglietta.francesco@gmail.com>2013-01-27 00:52:37 +0100
committerHal9000 <miglietta.francesco@gmail.com>2013-01-27 00:52:37 +0100
commit6a9729dea9113d85b7c8224ff0aa56495c80ef73 (patch)
treef13c458f62eeb7ac1c316c4b561a52dd7dd9fa74 /src
parentcd6585887c19eda357328c704fa7e426029392e8 (diff)
downloadplus-6a9729dea9113d85b7c8224ff0aa56495c80ef73.tar.gz
plus-6a9729dea9113d85b7c8224ff0aa56495c80ef73.tar.bz2
plus-6a9729dea9113d85b7c8224ff0aa56495c80ef73.tar.xz
plus-6a9729dea9113d85b7c8224ff0aa56495c80ef73.zip
Fix bug with shoplistbox.xml file.
Diffstat (limited to 'src')
-rw-r--r--src/gui/widgets/shoplistbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp
index 5aa91a2c9..d2868f3d2 100644
--- a/src/gui/widgets/shoplistbox.cpp
+++ b/src/gui/widgets/shoplistbox.cpp
@@ -44,7 +44,7 @@ float ShopListBox::mAlpha = 1.0;
ShopListBox::ShopListBox(const Widget2 *const widget,
gcn::ListModel *const listModel) :
- ListBox(widget, listModel, "shoplisbox.xml"),
+ ListBox(widget, listModel, "shoplistbox.xml"),
mPlayerMoney(0),
mShopItems(nullptr),
mItemPopup(new ItemPopup),
@@ -60,7 +60,7 @@ ShopListBox::ShopListBox(const Widget2 *const widget,
ShopListBox::ShopListBox(const Widget2 *const widget,
gcn::ListModel *const listModel,
ShopItems *const shopListModel) :
- ListBox(widget, listModel, "shoplisbox.xml"),
+ ListBox(widget, listModel, "shoplistbox.xml"),
mPlayerMoney(0),
mShopItems(shopListModel),
mItemPopup(new ItemPopup),