From d59cd9111c1e86b224ea62cc975c49b157e2b3cf Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 19 Oct 2012 23:56:04 +0300 Subject: Add to some controls palette inheritance from other controls. --- src/gui/widgets/shoplistbox.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/gui/widgets/shoplistbox.cpp') diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp index 06627f1a4..b81e3aced 100644 --- a/src/gui/widgets/shoplistbox.cpp +++ b/src/gui/widgets/shoplistbox.cpp @@ -44,8 +44,9 @@ const int ITEM_ICON_SIZE = 32; float ShopListBox::mAlpha = 1.0; -ShopListBox::ShopListBox(gcn::ListModel *const listModel) : - ListBox(listModel), +ShopListBox::ShopListBox(const Widget2 *const widget, + gcn::ListModel *const listModel) : + ListBox(widget, listModel), mPlayerMoney(0), mShopItems(nullptr), mItemPopup(new ItemPopup), @@ -58,9 +59,10 @@ ShopListBox::ShopListBox(gcn::ListModel *const listModel) : mForegroundColor = getThemeColor(Theme::LISTBOX); } -ShopListBox::ShopListBox(gcn::ListModel *const listModel, +ShopListBox::ShopListBox(const Widget2 *const widget, + gcn::ListModel *const listModel, ShopItems *const shopListModel) : - ListBox(listModel), + ListBox(widget, listModel), mPlayerMoney(0), mShopItems(shopListModel), mItemPopup(new ItemPopup), -- cgit v1.2.3-70-g09d2