summaryrefslogtreecommitdiff
path: root/gtk2_ardour/startup.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2012-06-23 05:09:06 +0000
committerTim Mayberry <mojofunk@gmail.com>2012-06-23 05:09:06 +0000
commitaf0083b11d0285f8fd529262b66b287ae33d130a (patch)
treedad2d085de271c7d28c0e472a2ff040cb4bf4743 /gtk2_ardour/startup.cc
parentf558a8c9173598c5d8b5fa11214b975f848dbf92 (diff)
Replace use of PBD::sys::exists with Glib::file_test
git-svn-id: svn://localhost/ardour2/branches/3.0@12885 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/startup.cc')
-rw-r--r--gtk2_ardour/startup.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc
index ee598b08cb..8e94ae9167 100644
--- a/gtk2_ardour/startup.cc
+++ b/gtk2_ardour/startup.cc
@@ -123,7 +123,7 @@ Ardour will play NO role in monitoring"))
set_default_icon_list (window_icons);
}
- new_user = !exists (been_here_before_path ());
+ new_user = !Glib::file_test(been_here_before_path().to_string(), Glib::FILE_TEST_EXISTS);
bool need_audio_setup = !EngineControl::engine_running();