From 97dc2836a62625656a2af0e8def015ea0c322046 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 1 Aug 2020 15:49:26 +0200 Subject: Fix uninitialized members --- src/gui/App.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/gui/App.hpp') diff --git a/src/gui/App.hpp b/src/gui/App.hpp index 3149f169..74e880d2 100644 --- a/src/gui/App.hpp +++ b/src/gui/App.hpp @@ -166,11 +166,11 @@ protected: Style* _style; - ConnectWindow* _connect_window; - MessagesWindow* _messages_window; - GraphTreeWindow* _graph_tree_window; - Gtk::AboutDialog* _about_dialog; - WindowFactory* _window_factory; + ConnectWindow* _connect_window = nullptr; + MessagesWindow* _messages_window = nullptr; + GraphTreeWindow* _graph_tree_window = nullptr; + Gtk::AboutDialog* _about_dialog = nullptr; + WindowFactory* _window_factory = nullptr; ingen::World& _world; -- cgit v1.2.1