summaryrefslogtreecommitdiffstats
path: root/src/gui/App.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-01 15:49:26 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:48:48 +0200
commit97dc2836a62625656a2af0e8def015ea0c322046 (patch)
tree5a6e32bc67f93876eeadb36b77ccd45976a3c354 /src/gui/App.hpp
parent483ecd16de6801aed536eca64ed51a6a4c669e39 (diff)
downloadingen-97dc2836a62625656a2af0e8def015ea0c322046.tar.gz
ingen-97dc2836a62625656a2af0e8def015ea0c322046.tar.bz2
ingen-97dc2836a62625656a2af0e8def015ea0c322046.zip
Fix uninitialized members
Diffstat (limited to 'src/gui/App.hpp')
-rw-r--r--src/gui/App.hpp10
1 files changed, 5 insertions, 5 deletions
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;