diff options
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r-- | src/gui/inventorywindow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index c489d9278..fdd3e957a 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -95,6 +95,9 @@ InventoryWindow::InventoryWindow(Inventory *const inventory): gcn::SelectionListener(), InventoryListener(), mInventory(inventory), + mItems(new ItemContainer(this, mInventory)), + mWeight(), + mSlots(), mUseButton(nullptr), mDropButton(nullptr), mSplitButton(nullptr), @@ -143,7 +146,6 @@ InventoryWindow::InventoryWindow(Inventory *const inventory): setMinHeight(179); addKeyListener(this); - mItems = new ItemContainer(this, mInventory); mItems->addSelectionListener(this); gcn::ScrollArea *const invenScroll = new ScrollArea( |