aboutsummaryrefslogtreecommitdiffstats
path: root/src/QueueSave.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/QueueSave.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/QueueSave.cxx b/src/QueueSave.cxx
index 30c669538..7fe985a69 100644
--- a/src/QueueSave.cxx
+++ b/src/QueueSave.cxx
@@ -28,7 +28,7 @@
#include "TextFile.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
-#include "fs/Path.hxx"
+#include "fs/Traits.hxx"
#include "Log.hxx"
#include <glib.h>
@@ -91,7 +91,7 @@ queue_load_song(TextFile &file, const char *line, queue *queue)
if (g_str_has_prefix(line, SONG_BEGIN)) {
const char *uri = line + sizeof(SONG_BEGIN) - 1;
- if (!uri_has_scheme(uri) && !Path::IsAbsoluteUTF8(uri))
+ if (!uri_has_scheme(uri) && !PathTraits::IsAbsoluteUTF8(uri))
return;
Error error;