summaryrefslogtreecommitdiff
path: root/libs/ardour/recent_sessions.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-08-18 17:32:49 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-08-18 17:32:49 +0000
commit52537effebb129f80d9075a1eae3ae83748f30dc (patch)
tree0061d2aa8fc917aca9a1842ee2874fd0890ebb12 /libs/ardour/recent_sessions.cc
parentc8f5d847e530083a7aa658dad9a37af7b4647615 (diff)
remove Glib::ustring from libardour
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@10004 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/recent_sessions.cc')
-rw-r--r--libs/ardour/recent_sessions.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/recent_sessions.cc b/libs/ardour/recent_sessions.cc
index 9102a49065..997c915095 100644
--- a/libs/ardour/recent_sessions.cc
+++ b/libs/ardour/recent_sessions.cc
@@ -39,7 +39,7 @@ using namespace PBD;
int
ARDOUR::read_recent_sessions (RecentSessions& rs)
{
- Glib::ustring path = Glib::build_filename (get_user_ardour_path(), "recent");
+ std::string path = Glib::build_filename (get_user_ardour_path(), "recent");
ifstream recent (path.c_str());
@@ -81,7 +81,7 @@ ARDOUR::read_recent_sessions (RecentSessions& rs)
int
ARDOUR::write_recent_sessions (RecentSessions& rs)
{
- Glib::ustring path = Glib::build_filename (get_user_ardour_path(), "recent");
+ std::string path = Glib::build_filename (get_user_ardour_path(), "recent");
ofstream recent (path.c_str());