gtkmm: use append() instead of deprecated Gtk::ComboBoxText::append_text()

This commit is contained in:
Mads Kiilerich 2022-01-26 21:11:15 +01:00 committed by Robin Gareus
parent 71ea2cc7b9
commit 09c6e68ae8
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
24 changed files with 96 additions and 96 deletions

View file

@ -159,10 +159,10 @@ using the program.</span> \
Label* bazmatic = manage (new Label);
bazmatic->set_markup (_("<small><i>This can later be changed in Preferences &gt; Appearance.</i></small>"));
ui_font_scale.append_text (_("100%"));
ui_font_scale.append_text (_("150%"));
ui_font_scale.append_text (_("200%"));
ui_font_scale.append_text (_("250%"));
ui_font_scale.append (_("100%"));
ui_font_scale.append (_("150%"));
ui_font_scale.append (_("200%"));
ui_font_scale.append (_("250%"));
ui_font_scale.set_active_text (_("100%"));
HBox* hbox = manage (new HBox);