From 5ad2980d69409b5f307dcea57f2107bbcfcffc70 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 3 Feb 2014 22:25:54 +0100 Subject: QueueSave: use class SongLoader --- src/StateFile.cxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/StateFile.cxx') diff --git a/src/StateFile.cxx b/src/StateFile.cxx index 7c0e24439..4d2813136 100644 --- a/src/StateFile.cxx +++ b/src/StateFile.cxx @@ -24,7 +24,7 @@ #include "fs/TextFile.hxx" #include "Partition.hxx" #include "mixer/Volume.hxx" - +#include "SongLoader.hxx" #include "fs/FileSystem.hxx" #include "util/Domain.hxx" #include "Log.hxx" @@ -97,11 +97,14 @@ StateFile::Read() return; } + const SongLoader song_loader(nullptr); + const char *line; while ((line = file.ReadLine()) != NULL) { success = read_sw_volume_state(line, partition.outputs) || audio_output_state_read(line, partition.outputs) || - playlist_state_restore(line, file, partition.playlist, + playlist_state_restore(line, file, song_loader, + partition.playlist, partition.pc); if (!success) FormatError(state_file_domain, -- cgit v1.2.3