Replaced an errant Glib::ustring with std::string

This commit is contained in:
Joel Holdsworth 2009-01-21 22:18:55 +00:00
parent 5eadcfb56a
commit f18c039074

View file

@ -75,8 +75,8 @@ Track::print_branch()
string
Track::print_branch_recursive(const unsigned int indentation)
{
Glib::ustring str;
string str;
for(unsigned int i = 0; i < indentation; i++)
str += " ";
str += print_track();