summaryrefslogtreecommitdiff
path: root/gtk2_ardour/search_path_option.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-10-23 14:45:45 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-10-23 14:45:45 +0000
commitd257c130603cb4f18f89636fe5b5e7e4b6de6e0d (patch)
treeb258e1bdd3cb462235b4666c685dd9719422eda0 /gtk2_ardour/search_path_option.cc
parenta541e4e811fb2263f3e59f6f5aeeeb872e270718 (diff)
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
Diffstat (limited to 'gtk2_ardour/search_path_option.cc')
-rw-r--r--gtk2_ardour/search_path_option.cc2
1 files changed, 1 insertions, 1 deletions
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);