summaryrefslogtreecommitdiff
path: root/src/gui/outfitwindow.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-02-08 22:35:09 +0100
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-02-09 17:14:25 +0100
commit1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7 (patch)
tree74cff7036d1ecfb4df5a79a7ca68bedce5bea47e /src/gui/outfitwindow.h
parent0ca05c54dd814f294617eda286ef175f01baa542 (diff)
downloadmana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.gz
mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.bz2
mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.xz
mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.zip
C++11: Use default member initializers
This patch is not exhaustive.
Diffstat (limited to 'src/gui/outfitwindow.h')
-rw-r--r--src/gui/outfitwindow.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/gui/outfitwindow.h b/src/gui/outfitwindow.h
index c5e24b9b..a7f50b47 100644
--- a/src/gui/outfitwindow.h
+++ b/src/gui/outfitwindow.h
@@ -72,20 +72,21 @@ class OutfitWindow : public Window, gcn::ActionListener
int getIndexFromGrid(int pointX, int pointY) const;
- int mBoxWidth;
- int mBoxHeight;
+ int mBoxWidth = 33;
+ int mBoxHeight = 33;
int mCursorPosX, mCursorPosY;
- int mGridWidth, mGridHeight;
- bool mItemClicked;
- Item *mItemMoved;
+ int mGridWidth = 3;
+ int mGridHeight = 3;
+ bool mItemClicked = false;
+ Item *mItemMoved = nullptr;
void save();
int mItems[OUTFITS_COUNT][OUTFIT_ITEM_COUNT];
bool mItemsUnequip[OUTFITS_COUNT];
- int mItemSelected;
+ int mItemSelected = -1;
- int mCurrentOutfit;
+ int mCurrentOutfit = 0;
};
extern OutfitWindow *outfitWindow;