summaryrefslogtreecommitdiff
path: root/src/gui/windows/inventorywindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-03-04 01:05:30 +0300
committerAndrei Karas <akaras@inbox.ru>2014-03-04 01:05:30 +0300
commitbc510019c0e0b9cc14f0c580667b384568177f7a (patch)
tree84155a845bf5737666737f71713e7fec644d3187 /src/gui/windows/inventorywindow.cpp
parent50ccaf404cdbe5b635f003ff209996f9062183d5 (diff)
downloadplus-bc510019c0e0b9cc14f0c580667b384568177f7a.tar.gz
plus-bc510019c0e0b9cc14f0c580667b384568177f7a.tar.bz2
plus-bc510019c0e0b9cc14f0c580667b384568177f7a.tar.xz
plus-bc510019c0e0b9cc14f0c580667b384568177f7a.zip
Merge scrollarea classes into one.
Diffstat (limited to 'src/gui/windows/inventorywindow.cpp')
-rw-r--r--src/gui/windows/inventorywindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp
index ee8c85f06..a12dca882 100644
--- a/src/gui/windows/inventorywindow.cpp
+++ b/src/gui/windows/inventorywindow.cpp
@@ -151,9 +151,9 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
mItems->addSelectionListener(this);
- gcn::ScrollArea *const invenScroll = new ScrollArea(this, mItems,
+ ScrollArea *const invenScroll = new ScrollArea(this, mItems,
getOptionBool("showbackground"), "inventory_background.xml");
- invenScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER);
+ invenScroll->setHorizontalScrollPolicy(ScrollArea::SHOW_NEVER);
const int size = config.getIntValue("fontSize");
mFilter = new TabStrip(this, "filter_" + getWindowName(), size + 16);