From b3611524f45c2a478f9decd6d22ecd1dbbbb64b9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 17 Oct 2013 23:23:25 +0200 Subject: fs/Path: move definitions to struct PathTraits --- src/QueueSave.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/QueueSave.cxx') 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 @@ -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; -- cgit v1.2.3