From f18c039074953d3ce8bf4427e18a77595f0e1150 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Wed, 21 Jan 2009 22:18:55 +0000 Subject: [PATCH] Replaced an errant Glib::ustring with std::string --- src/gui/model/track.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/model/track.cpp b/src/gui/model/track.cpp index b5cd7e2da..a0287efd9 100644 --- a/src/gui/model/track.cpp +++ b/src/gui/model/track.cpp @@ -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();