From 73fb2ddfedaa4d811f8325d92306c4a61af67c9c Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Thu, 18 Feb 2021 11:04:57 -0600 Subject: [PATCH] Remove deprecated tab_title (2/3) --- gtk2_ardour/ardour_ui_dependents.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/ardour_ui_dependents.cc b/gtk2_ardour/ardour_ui_dependents.cc index f711c2647f..1335622663 100644 --- a/gtk2_ardour/ardour_ui_dependents.cc +++ b/gtk2_ardour/ardour_ui_dependents.cc @@ -295,10 +295,10 @@ ARDOUR_UI::setup_windows () /* order of addition affects order seen in initial window display */ - rc_option_editor->add_to_notebook (_tabs, _("Preferences")); - mixer->add_to_notebook (_tabs, _("Mixer")); - editor->add_to_notebook (_tabs, _("Editor")); - recorder->add_to_notebook (_tabs, _("Recorder")); + rc_option_editor->add_to_notebook (_tabs); + mixer->add_to_notebook (_tabs); + editor->add_to_notebook (_tabs); + recorder->add_to_notebook (_tabs); top_packer.pack_start (menu_bar_base, false, false);