mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 13:46:30 +01:00
Use Gtk::Notebook::append_page rather than deprecated API
This commit is contained in:
parent
7e1be05445
commit
e68ded449f
4 changed files with 10 additions and 11 deletions
|
|
@ -244,9 +244,9 @@ EngineControl::EngineControl ()
|
|||
|
||||
/* pack it all up */
|
||||
|
||||
notebook.pages().push_back (TabElem (basic_vbox, _("Audio")));
|
||||
notebook.pages().push_back (TabElem (lm_vbox, _("Latency")));
|
||||
notebook.pages().push_back (TabElem (midi_vbox, _("MIDI")));
|
||||
notebook.append_page (basic_vbox, _("Audio"));
|
||||
notebook.append_page (lm_vbox, _("Latency"));
|
||||
notebook.append_page (midi_vbox, _("MIDI"));
|
||||
notebook.set_border_width (12);
|
||||
|
||||
notebook.set_show_tabs (false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue