mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +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
|
|
@ -107,13 +107,13 @@ ScriptSelector::setup_list ()
|
|||
_script_combo.set_row_separator_func (sigc::mem_fun (*this, &ScriptSelector::script_separator));
|
||||
|
||||
if (_script_type == LuaScriptInfo::EditorAction) {
|
||||
_script_combo.append_text ("Shortcut");
|
||||
_script_combo.append_text ("--separator--");
|
||||
_script_combo.append ("Shortcut");
|
||||
_script_combo.append ("--separator--");
|
||||
}
|
||||
|
||||
vector<string>::const_iterator i;
|
||||
for (i = script_names.begin(); i != script_names.end(); ++i) {
|
||||
_script_combo.append_text (*i);
|
||||
_script_combo.append (*i);
|
||||
}
|
||||
|
||||
_script_combo.set_active(0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue