summaryrefslogtreecommitdiff
path: root/src/gui/emotepopup.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/emotepopup.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/emotepopup.h')
-rw-r--r--src/gui/emotepopup.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/emotepopup.h b/src/gui/emotepopup.h
index cb1c7b89..ee905cd6 100644
--- a/src/gui/emotepopup.h
+++ b/src/gui/emotepopup.h
@@ -107,11 +107,11 @@ class EmotePopup : public Popup
std::vector<const ImageSprite*> mEmotes;
Image *mSelectionImage;
- int mSelectedEmoteIndex;
- int mHoveredEmoteIndex;
+ int mSelectedEmoteIndex = -1;
+ int mHoveredEmoteIndex = -1;
- int mRowCount;
- int mColumnCount;
+ int mRowCount = 1;
+ int mColumnCount = 1;
using Listeners = std::list<gcn::SelectionListener *>;