diff options
-rw-r--r-- | src/gui/widgets/shoplistbox.cpp | 4 |
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), |