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,7 +75,7 @@ Track::print_branch()
string string
Track::print_branch_recursive(const unsigned int indentation) Track::print_branch_recursive(const unsigned int indentation)
{ {
Glib::ustring str; string str;
for(unsigned int i = 0; i < indentation; i++) for(unsigned int i = 0; i < indentation; i++)
str += " "; str += " ";