From d257c130603cb4f18f89636fe5b5e7e4b6de6e0d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 23 Oct 2012 14:45:45 +0000 Subject: use Gtk::Label::set_text() rather than Gtk::Label::set_markup() where no markup is involved git-svn-id: svn://localhost/ardour2/branches/3.0@13319 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/search_path_option.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/search_path_option.cc b/gtk2_ardour/search_path_option.cc index 92b7938edd..4590183e6c 100644 --- a/gtk2_ardour/search_path_option.cc +++ b/gtk2_ardour/search_path_option.cc @@ -74,7 +74,7 @@ SearchPathOption::add_to_page (OptionEditorPage* p) Label* label = manage (new Label); label->set_alignment (0.0, 0.0); - label->set_markup (string_compose ("%1", _name)); + label->set_text (string_compose ("%1", _name)); p->table.attach (*label, 1, 2, n, n + 1, FILL | EXPAND); p->table.attach (vbox, 2, 3, n, n + 1, FILL | EXPAND); -- cgit v1.2.3