gtkmm: use ALIGN_START instead of deprecated Gtk::AlignmentEnum::ALIGN_LEFT

This commit is contained in:
Mads Kiilerich 2022-01-26 22:19:32 +01:00 committed by Robin Gareus
parent 1390743d52
commit 2aa72891f3
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
31 changed files with 123 additions and 123 deletions

View file

@ -169,10 +169,10 @@ PluginSelector::PluginSelector (PluginManager& mgr)
_search_ignore_checkbox->set_name ("pluginlist filter button");
Gtk::Label* search_help_label1 = manage (new Label(
_("All search terms must be matched."), Gtk::ALIGN_LEFT));
_("All search terms must be matched."), Gtk::ALIGN_START));
Gtk::Label* search_help_label2 = manage (new Label(
_("Ex: \"ess dyn\" will find \"dynamic de-esser\" but not \"de-esser\"."), Gtk::ALIGN_LEFT));
_("Ex: \"ess dyn\" will find \"dynamic de-esser\" but not \"de-esser\"."), Gtk::ALIGN_START));
search_table->attach (search_entry, 0, 3, 0, 1, FILL|EXPAND, FILL);
search_table->attach (search_clear_button, 3, 4, 0, 1, FILL, FILL);
@ -270,13 +270,13 @@ PluginSelector::PluginSelector (PluginManager& mgr)
tag_reset_button->signal_clicked().connect (sigc::mem_fun (*this, &PluginSelector::tag_reset_button_clicked));
Gtk::Label* tagging_help_label1 = manage (new Label(
_("Enter space-separated, one-word Tags for the selected plugin."), Gtk::ALIGN_LEFT));
_("Enter space-separated, one-word Tags for the selected plugin."), Gtk::ALIGN_START));
Gtk::Label* tagging_help_label2 = manage (new Label(
_("You can include dashes, colons or underscores in a Tag."), Gtk::ALIGN_LEFT));
_("You can include dashes, colons or underscores in a Tag."), Gtk::ALIGN_START));
Gtk::Label* tagging_help_label3 = manage (new Label(
_("Ex: \"dynamic de-esser vocal\" applies 3 Tags."), Gtk::ALIGN_LEFT));
_("Ex: \"dynamic de-esser vocal\" applies 3 Tags."), Gtk::ALIGN_START));
int p = 0;
tagging_table->attach (*tag_entry, 0, 1, p, p+1, FILL|EXPAND, FILL);