summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index 30ff47955a..ca6c0608ce 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -666,16 +666,6 @@ ARDOUR_UI_UTILS::escape_underscores (string const & s)
return o;
}
-/** Replace < and > with &lt; and &gt; respectively to make < > display correctly in markup strings */
-string
-ARDOUR_UI_UTILS::escape_angled_brackets (string const & s)
-{
- string o = s;
- boost::replace_all (o, "<", "&lt;");
- boost::replace_all (o, ">", "&gt;");
- return o;
-}
-
Gdk::Color
ARDOUR_UI_UTILS::unique_random_color (list<Gdk::Color>& used_colors)
{