summaryrefslogtreecommitdiff
path: root/src/gui/widgets/itemcontainer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/itemcontainer.cpp')
-rw-r--r--src/gui/widgets/itemcontainer.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/widgets/itemcontainer.cpp b/src/gui/widgets/itemcontainer.cpp
index d0331fb37..08c26d152 100644
--- a/src/gui/widgets/itemcontainer.cpp
+++ b/src/gui/widgets/itemcontainer.cpp
@@ -156,6 +156,10 @@ class SortItemTypeFunctor
ItemContainer::ItemContainer(Inventory *const inventory,
const bool forceQuantity) :
+ Widget(),
+ KeyListener(),
+ MouseListener(),
+ WidgetListener(),
mInventory(inventory),
mGridColumns(1),
mGridRows(1),
@@ -167,6 +171,8 @@ ItemContainer::ItemContainer(Inventory *const inventory,
mForceQuantity(forceQuantity),
mSwapItems(false),
mDescItems(false),
+ mDragPosX(0),
+ mDragPosY(0),
mTag(0),
mSortType(0),
mItemPopup(new ItemPopup),