13
0

Add missing namespace qualifiers

This commit is contained in:
John Emmas 2020-11-19 16:02:12 +00:00
parent 9ee828b47b
commit abfceea98c

View File

@ -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); 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); f->add (silence_table);
g->attach (*f, 0, 1, 1, 2, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); 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); f->add (watermark_options_table);
g->attach (*f, 1, 2, 1, 2, Gtk::EXPAND | Gtk::FILL, Gtk::FILL); 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); f->add (format_table);
g->attach (*f, 0, 1, 2, 3); 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); f->add (encoding_options_vbox);
g->attach (*f, 1, 2, 2, 3); g->attach (*f, 1, 2, 2, 3);
f = manage (new Gtk::Frame (_("Metadata"))); f = Gtk::manage (new Gtk::Frame (_("Metadata")));
f->add (metadata_table); f->add (metadata_table);
g->attach (*f, 0, 2, 3, 4, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); 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); f->add (command_box);
g->attach (*f, 0, 2, 4, 5, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); g->attach (*f, 0, 2, 4, 5, Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);