remove Glib::ustring from gtk2_ardour

git-svn-id: svn://localhost/ardour2/branches/3.0@7774 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-09-14 16:51:02 +00:00
parent c1ee2c6943
commit da8eec7a83
72 changed files with 303 additions and 308 deletions

View file

@ -43,7 +43,7 @@ CanvasFlag::set_text(const string& a_text)
{
delete_allocated_objects();
_text = new Text (*this, 0.0, 0.0, Glib::ustring(a_text));
_text = new Text (*this, 0.0, 0.0, std::string(a_text));
_text->property_justification() = Gtk::JUSTIFY_CENTER;
_text->property_fill_color_rgba() = _outline_color_rgba;
double flagwidth = _text->property_text_width() + 10.0;