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
|
|
@ -215,8 +215,8 @@ BundleEditor::BundleEditor (Session* session, boost::shared_ptr<UserBundle> bund
|
|||
a = new Gtk::Alignment (0, 0.5, 0, 1);
|
||||
a->add (_input_or_output);
|
||||
t->attach (*Gtk::manage (a), 1, 2, 1, 2);
|
||||
_input_or_output.append_text (_("Destination"));
|
||||
_input_or_output.append_text (_("Source"));
|
||||
_input_or_output.append (_("Destination"));
|
||||
_input_or_output.append (_("Source"));
|
||||
|
||||
if (bundle->ports_are_inputs()) {
|
||||
_input_or_output.set_active_text (_("Destination"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue