summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-05-25 10:17:16 +0000
committerCarl Hetherington <carl@carlh.net>2011-05-25 10:17:16 +0000
commitc07ed4b8489ea279400fba4891be54b663fd8885 (patch)
tree71ab2f076ada9534507d88501c1c8a084c00451d
parentb38b5fd59b6022177f14fe29c18eb49fce3ca579 (diff)
Fix a couple of uninitialised variables (should fix #4059).
git-svn-id: svn://localhost/ardour2/branches/3.0@9582 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/ardour_ui.cc3
-rw-r--r--gtk2_ardour/editor.cc1
-rw-r--r--gtk2_ardour/editor.h1
3 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 088bff7822..d53e441fd2 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -204,6 +204,8 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[])
ui_config = new UIConfiguration();
theme_manager = new ThemeManager();
+ key_editor = 0;
+
editor = 0;
mixer = 0;
editor = 0;
@@ -217,6 +219,7 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[])
_will_create_new_session_automatically = false;
add_route_dialog = 0;
route_params = 0;
+ bundle_manager = 0;
rc_option_editor = 0;
session_option_editor = 0;
location_ui = 0;
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index 8a6e78d9aa..a0dc2ffb09 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -364,7 +364,6 @@ Editor::Editor ()
select_new_marker = false;
rhythm_ferret = 0;
layering_order_editor = 0;
- _bundle_manager = 0;
no_save_visual = false;
resize_idle_id = -1;
diff --git a/gtk2_ardour/editor.h b/gtk2_ardour/editor.h
index 140235e890..6a0a59e0fb 100644
--- a/gtk2_ardour/editor.h
+++ b/gtk2_ardour/editor.h
@@ -1980,7 +1980,6 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD
void timecode_snap_to_internal (framepos_t& first, int32_t direction = 0, bool for_mark = false);
RhythmFerret* rhythm_ferret;
- BundleManager* _bundle_manager;
void fit_tracks (TrackViewList &);
void fit_selected_tracks ();