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
This commit is contained in:
Paul Davis 2012-10-23 14:45:45 +00:00
parent a541e4e811
commit d257c13060
1 changed files with 1 additions and 1 deletions

View File

@ -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);