From abfceea98c193450caa84f6ba5b6f11e68006f0f Mon Sep 17 00:00:00 2001 From: John Emmas Date: Thu, 19 Nov 2020 16:02:12 +0000 Subject: [PATCH] Add missing namespace qualifiers --- gtk2_ardour/export_format_dialog.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gtk2_ardour/export_format_dialog.cc b/gtk2_ardour/export_format_dialog.cc index dcce820f2c..843ec4e7f9 100644 --- a/gtk2_ardour/export_format_dialog.cc +++ b/gtk2_ardour/export_format_dialog.cc @@ -299,26 +299,26 @@ ExportFormatDialog::ExportFormatDialog (FormatPtr format, bool new_dialog) g->attach (name_hbox, 0, 2, 0, 1, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); - f = manage (new Gtk::Frame (_("Pre Process"))); + f = Gtk::manage (new Gtk::Frame (_("Pre Process"))); f->add (silence_table); g->attach (*f, 0, 1, 1, 2, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); - f = manage (new Gtk::Frame (_("Watermark"))); + f = Gtk::manage (new Gtk::Frame (_("Watermark"))); f->add (watermark_options_table); g->attach (*f, 1, 2, 1, 2, Gtk::EXPAND | Gtk::FILL, Gtk::FILL); - f = manage (new Gtk::Frame (_("Format"))); + f = Gtk::manage (new Gtk::Frame (_("Format"))); f->add (format_table); g->attach (*f, 0, 1, 2, 3); - f = manage (new Gtk::Frame (_("Encoding"))); + f = Gtk::manage (new Gtk::Frame (_("Encoding"))); f->add (encoding_options_vbox); g->attach (*f, 1, 2, 2, 3); - f = manage (new Gtk::Frame (_("Metadata"))); + f = Gtk::manage (new Gtk::Frame (_("Metadata"))); f->add (metadata_table); g->attach (*f, 0, 2, 3, 4, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); - f = manage (new Gtk::Frame (_("Post Export"))); + f = Gtk::manage (new Gtk::Frame (_("Post Export"))); f->add (command_box); g->attach (*f, 0, 2, 4, 5, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);