mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
gtkmm: use append() instead of deprecated Gtk::ComboBoxText::append_text()
This commit is contained in:
parent
71ea2cc7b9
commit
09c6e68ae8
24 changed files with 96 additions and 96 deletions
|
|
@ -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 > 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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue