diff options
Diffstat (limited to 'src/gui/setup_players.cpp')
-rw-r--r-- | src/gui/setup_players.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index 529e69a5..17e59845 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -86,7 +86,6 @@ class PlayerTableModel : public TableModel { public: PlayerTableModel() : - mPlayers(nullptr), mListModel(new PlayerRelationListModel) { playerRelationsUpdated(); @@ -175,7 +174,7 @@ public: } protected: - std::vector<std::string> *mPlayers; + std::vector<std::string> *mPlayers = nullptr; std::vector<gcn::Widget *> mWidgets; PlayerRelationListModel *mListModel; }; |