diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 01:49:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:43 +0300 |
commit | 376c7e4a46c2c18d117db49b143a3f138d6a81c7 (patch) | |
tree | 0488ce7aab7186cf32c22a6a5f3a275a46dae145 /src/gui/inventorywindow.cpp | |
parent | f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8 (diff) | |
download | mv-376c7e4a46c2c18d117db49b143a3f138d6a81c7.tar.gz mv-376c7e4a46c2c18d117db49b143a3f138d6a81c7.tar.bz2 mv-376c7e4a46c2c18d117db49b143a3f138d6a81c7.tar.xz mv-376c7e4a46c2c18d117db49b143a3f138d6a81c7.zip |
Add palette inheritance to itemcontainer class.
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r-- | src/gui/inventorywindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 1844ab39c..ea53ee48a 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -144,7 +144,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory): setMinHeight(179); addKeyListener(this); - mItems = new ItemContainer(mInventory); + mItems = new ItemContainer(this, mInventory); mItems->addSelectionListener(this); gcn::ScrollArea *const invenScroll = new ScrollArea( |