summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_ed.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-03-19 20:53:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-03-19 20:53:22 +0000
commitd1630219500305397e1608e09508872f0ab2f836 (patch)
tree5ae9bc1619fb2a0646628614aa85103288bfee60 /gtk2_ardour/ardour_ui_ed.cc
parent587021ac0b63897d9b984d01b62b5dbb8514dd4f (diff)
lots of tricks & tweaks related to the monitor section and All That It Uses
git-svn-id: svn://localhost/ardour2/branches/3.0@6777 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_ui_ed.cc')
-rw-r--r--gtk2_ardour/ardour_ui_ed.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/ardour_ui_ed.cc b/gtk2_ardour/ardour_ui_ed.cc
index 46cd5d952d..f3bc96c6c5 100644
--- a/gtk2_ardour/ardour_ui_ed.cc
+++ b/gtk2_ardour/ardour_ui_ed.cc
@@ -722,19 +722,19 @@ ARDOUR_UI::save_ardour_state ()
if (transport_tearoff) {
XMLNode* t = new XMLNode (X_("transport"));
- transport_tearoff->add_tornoff_state (*t);
+ transport_tearoff->add_state (*t);
tearoff_node->add_child_nocopy (*t);
}
if (mixer && mixer->monitor_section()) {
XMLNode* t = new XMLNode (X_("monitor-section"));
- mixer->monitor_section()->tearoff()->add_tornoff_state (*t);
+ mixer->monitor_section()->tearoff().add_state (*t);
tearoff_node->add_child_nocopy (*t);
}
if (editor && editor->mouse_mode_tearoff()) {
XMLNode* t = new XMLNode (X_("mouse-mode"));
- editor->mouse_mode_tearoff ()->add_tornoff_state (*t);
+ editor->mouse_mode_tearoff ()->add_state (*t);
tearoff_node->add_child_nocopy (*t);
}