From 1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Thu, 8 Feb 2024 22:35:09 +0100 Subject: C++11: Use default member initializers This patch is not exhaustive. --- src/gui/statuswindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/statuswindow.cpp') diff --git a/src/gui/statuswindow.cpp b/src/gui/statuswindow.cpp index c2486b89..ef6ca62e 100644 --- a/src/gui/statuswindow.cpp +++ b/src/gui/statuswindow.cpp @@ -87,7 +87,7 @@ class ChangeDisplay : public AttrDisplay, gcn::ActionListener private: void action(const gcn::ActionEvent &event) override; - int mNeeded; + int mNeeded = 1; Label *mPoints; Button *mDec; @@ -461,7 +461,7 @@ DerDisplay::DerDisplay(int id, const std::string &name): } ChangeDisplay::ChangeDisplay(int id, const std::string &name): - AttrDisplay(id, name), mNeeded(1) + AttrDisplay(id, name) { mPoints = new Label(_("Max")); mInc = new Button(_("+"), "inc", this); -- cgit v1.2.3-60-g2f50