summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadPluginWindow.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/LoadPluginWindow.hpp
parent483ecd16de6801aed536eca64ed51a6a4c669e39 (diff)
downloadingen-97dc2836a62625656a2af0e8def015ea0c322046.tar.gz
ingen-97dc2836a62625656a2af0e8def015ea0c322046.tar.bz2
ingen-97dc2836a62625656a2af0e8def015ea0c322046.zip
Fix uninitialized members
Diffstat (limited to 'src/gui/LoadPluginWindow.hpp')
-rw-r--r--src/gui/LoadPluginWindow.hpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/gui/LoadPluginWindow.hpp b/src/gui/LoadPluginWindow.hpp
index 78c52eba..afbe110a 100644
--- a/src/gui/LoadPluginWindow.hpp
+++ b/src/gui/LoadPluginWindow.hpp
@@ -143,17 +143,17 @@ private:
Glib::RefPtr<Gtk::TreeSelection> _selection;
- int _name_offset; // see comments for generate_plugin_name
-
- bool _has_shown;
- bool _refresh_list;
- Gtk::TreeView* _plugins_treeview;
- Gtk::CheckButton* _polyphonic_checkbutton;
- Gtk::Entry* _name_entry;
- Gtk::Button* _close_button;
- Gtk::Button* _add_button;
- Gtk::ComboBox* _filter_combo;
- Gtk::Entry* _search_entry;
+ int _name_offset = 0; // see comments for generate_plugin_name
+
+ bool _has_shown = false;
+ bool _refresh_list = true;
+ Gtk::TreeView* _plugins_treeview = nullptr;
+ Gtk::CheckButton* _polyphonic_checkbutton = nullptr;
+ Gtk::Entry* _name_entry = nullptr;
+ Gtk::Button* _close_button = nullptr;
+ Gtk::Button* _add_button = nullptr;
+ Gtk::ComboBox* _filter_combo = nullptr;
+ Gtk::Entry* _search_entry = nullptr;
};
} // namespace gui