diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-06 21:06:38 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-06 21:06:38 +0200 |
commit | 7ee2220427d8735c777f504517c24c49afda699f (patch) | |
tree | f042e5c101b0689f92490e7bbad34ac6d8f876d9 /src/gui | |
parent | e96cf57be9754001fe8502725e4c79dd7ae7b5f5 (diff) | |
download | mana-7ee2220427d8735c777f504517c24c49afda699f.tar.gz mana-7ee2220427d8735c777f504517c24c49afda699f.tar.bz2 mana-7ee2220427d8735c777f504517c24c49afda699f.tar.xz mana-7ee2220427d8735c777f504517c24c49afda699f.zip |
Fixed compile warning about initialization order
Also made CMakeLists.txt consistent with Makefile.am regarding the
BuySellDialog.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/itemcontainer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp index 7420cc18..40f4ae28 100644 --- a/src/gui/itemcontainer.cpp +++ b/src/gui/itemcontainer.cpp @@ -58,9 +58,9 @@ ItemContainer::ItemContainer(Inventory *inventory, mSelectedItem(NULL), mHighlightedItem(NULL), mSelectionStatus(SEL_NONE), + mForceQuantity(forceQuantity), mSwapItems(false), - mDescItems(false), - mForceQuantity(forceQuantity) + mDescItems(false) { mItemPopup = new ItemPopup; setFocusable(true); |