13
0

remove stupid, unused function

This commit is contained in:
Paul Davis 2016-01-24 21:01:49 -05:00
parent 89a4d689d1
commit 33bf858a5f
2 changed files with 0 additions and 11 deletions

View File

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

View File

@ -83,7 +83,6 @@ bool key_is_legal_for_numeric_entry (guint keyval);
void resize_window_to_proportion_of_monitor (Gtk::Window*, int, int);
std::string escape_underscores (std::string const &);
std::string escape_angled_brackets (std::string const &);
Gdk::Color unique_random_color (std::list<Gdk::Color> &);