Replaced an errant Glib::ustring with std::string
This commit is contained in:
parent
5eadcfb56a
commit
f18c039074
1 changed files with 2 additions and 2 deletions
|
|
@ -75,8 +75,8 @@ 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 += " ";
|
||||||
str += print_track();
|
str += print_track();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue