diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-19 23:56:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:42 +0300 |
commit | d59cd9111c1e86b224ea62cc975c49b157e2b3cf (patch) | |
tree | d7186479633c0269573e92b5a5213d04b84b3995 /src/gui/inventorywindow.cpp | |
parent | 71d2b482d84246b8456ea863f94a9a766d33f197 (diff) | |
download | mv-d59cd9111c1e86b224ea62cc975c49b157e2b3cf.tar.gz mv-d59cd9111c1e86b224ea62cc975c49b157e2b3cf.tar.bz2 mv-d59cd9111c1e86b224ea62cc975c49b157e2b3cf.tar.xz mv-d59cd9111c1e86b224ea62cc975c49b157e2b3cf.zip |
Add to some controls palette inheritance from other controls.
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r-- | src/gui/inventorywindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index f0f619fae..4446d2958 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -109,7 +109,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory): mSlotsBar(new ProgressBar(0.0f, 100, 0, Theme::PROG_INVY_SLOTS)), mFilter(nullptr), mSortModel(new SortListModel()), - mSortDropDown(new DropDown(mSortModel, this, "sort")), + mSortDropDown(new DropDown(this, mSortModel, this, "sort")), mNameFilter(new TextField("", true, this, "namefilter", true)), mSortDropDownCell(nullptr), mNameFilterCell(nullptr), @@ -152,7 +152,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory): invenScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); const int size = config.getIntValue("fontSize"); - mFilter = new TabStrip("filter_" + getWindowName(), size + 8); + mFilter = new TabStrip(this, "filter_" + getWindowName(), size + 8); mFilter->addActionListener(this); mFilter->setActionEventId("tag_"); |