Clean up confusion wrt showing the bundle manager. Fixes #2930.

git-svn-id: svn://localhost/ardour2/branches/3.0@6230 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-12-01 00:34:45 +00:00
parent 89c8f18f5e
commit cf6f83146a
4 changed files with 0 additions and 14 deletions

View File

@ -427,7 +427,6 @@
<menuitem action='ToggleThemeManager'/>
<menuitem action='ToggleBigClock'/>
<menuitem action='toggle-rhythm-ferret'/>
<menuitem action='toggle-bundle-manager'/>
<menuitem action='toggle-audio-connection-manager'/>
<menuitem action='toggle-midi-connection-manager'/>
<menuitem action='toggle-log-window'/>

View File

@ -4688,16 +4688,6 @@ Editor::show_rhythm_ferret ()
rhythm_ferret->present ();
}
void
Editor::show_bundle_manager ()
{
if (_bundle_manager == 0) {
_bundle_manager = new BundleManager (*session);
}
_bundle_manager->show ();
}
void
Editor::show_global_port_matrix (ARDOUR::DataType t)
{

View File

@ -412,7 +412,6 @@ class Editor : public PublicEditor
void toggle_meter_updating();
void show_rhythm_ferret();
void show_bundle_manager ();
void show_global_port_matrix (ARDOUR::DataType);
void goto_visual_state (uint32_t);

View File

@ -566,8 +566,6 @@ Editor::register_actions ()
ActionManager::region_selection_sensitive_actions.push_back (act);
act = ActionManager::register_action (editor_actions, "toggle-rhythm-ferret", _("Rhythm Ferret"), mem_fun(*this, &Editor::show_rhythm_ferret));
ActionManager::session_sensitive_actions.push_back (act);
act = ActionManager::register_action (editor_actions, "toggle-bundle-manager", _("Bundle Manager"), mem_fun (*this, &Editor::show_bundle_manager));
ActionManager::session_sensitive_actions.push_back (act);
act = ActionManager::register_action (editor_actions, "toggle-audio-connection-manager", _("Audio Connection Manager"), bind (mem_fun (*this, &Editor::show_global_port_matrix), ARDOUR::DataType::AUDIO));
ActionManager::session_sensitive_actions.push_back (act);
act = ActionManager::register_action (editor_actions, "toggle-midi-connection-manager", _("MIDI Connection Manager"), bind (mem_fun (*this, &Editor::show_global_port_matrix), ARDOUR::DataType::MIDI));