Remove tooltips() member from ARDOUR_UI and use Gtk_UI::set_tip

This commit is contained in:
Tim Mayberry 2015-01-05 08:22:37 +07:00 committed by Paul Davis
parent b8e9ee50e0
commit c256075e63
5 changed files with 10 additions and 15 deletions

View file

@ -360,7 +360,7 @@ SessionDialog::setup_initial_choice_box ()
Gtk::Button *updates_button = manage (new Gtk::Button (_("Check the website for more...")));
updates_button->signal_clicked().connect (mem_fun(*this, &SessionDialog::updates_button_clicked) );
ARDOUR_UI::instance()->tooltips().set_tip (*updates_button, _("Click to open the program website in your web browser"));
ARDOUR_UI::instance()->set_tip (*updates_button, _("Click to open the program website in your web browser"));
info_box->pack_start (*updates_button, false, false);