diff options
author | Max Kellermann <max@musicpd.org> | 2018-08-02 13:45:43 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-08-02 13:51:18 +0200 |
commit | 90201e997085f04f5ac28333d2fbc70fbd6809f0 (patch) | |
tree | 932ba5f3618bc1efda878164e33bd3e6fd2f4d74 /test | |
parent | a31da51fd9bd215645b9cabce5fefa449ca14c90 (diff) |
DetachedSong, db/LightSong, SongFilter: move to src/song/
Diffstat (limited to 'test')
-rw-r--r-- | test/ContainerScan.cxx | 2 | ||||
-rw-r--r-- | test/DumpDatabase.cxx | 2 | ||||
-rw-r--r-- | test/ParseSongFilter.cxx | 2 | ||||
-rw-r--r-- | test/dump_playlist.cxx | 2 | ||||
-rw-r--r-- | test/test_queue_priority.cxx | 2 | ||||
-rw-r--r-- | test/test_translate_song.cxx | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/test/ContainerScan.cxx b/test/ContainerScan.cxx index ac4ad55a4..802dd0745 100644 --- a/test/ContainerScan.cxx +++ b/test/ContainerScan.cxx @@ -18,7 +18,7 @@ */ #include "config.h" -#include "DetachedSong.hxx" +#include "song/DetachedSong.hxx" #include "SongSave.hxx" #include "config/Data.hxx" #include "decoder/DecoderList.hxx" diff --git a/test/DumpDatabase.cxx b/test/DumpDatabase.cxx index bd51870f1..671af4922 100644 --- a/test/DumpDatabase.cxx +++ b/test/DumpDatabase.cxx @@ -24,7 +24,7 @@ #include "db/Selection.hxx" #include "db/DatabaseListener.hxx" #include "db/LightDirectory.hxx" -#include "db/LightSong.hxx" +#include "song/LightSong.hxx" #include "db/PlaylistVector.hxx" #include "config/Global.hxx" #include "config/Data.hxx" diff --git a/test/ParseSongFilter.cxx b/test/ParseSongFilter.cxx index 5cde6f301..7f368a03a 100644 --- a/test/ParseSongFilter.cxx +++ b/test/ParseSongFilter.cxx @@ -23,7 +23,7 @@ */ #include "config.h" -#include "SongFilter.hxx" +#include "song/Filter.hxx" #include "util/ConstBuffer.hxx" #include "util/PrintException.hxx" diff --git a/test/dump_playlist.cxx b/test/dump_playlist.cxx index 30c862872..a14268a41 100644 --- a/test/dump_playlist.cxx +++ b/test/dump_playlist.cxx @@ -19,7 +19,7 @@ #include "config.h" #include "TagSave.hxx" -#include "DetachedSong.hxx" +#include "song/DetachedSong.hxx" #include "playlist/SongEnumerator.hxx" #include "input/InputStream.hxx" #include "config/Global.hxx" diff --git a/test/test_queue_priority.cxx b/test/test_queue_priority.cxx index 3282b4219..a3418093c 100644 --- a/test/test_queue_priority.cxx +++ b/test/test_queue_priority.cxx @@ -1,6 +1,6 @@ #include "config.h" #include "queue/Queue.hxx" -#include "DetachedSong.hxx" +#include "song/DetachedSong.hxx" #include "util/Macros.hxx" #include <cppunit/TestFixture.h> diff --git a/test/test_translate_song.cxx b/test/test_translate_song.cxx index 4a78af867..10c1acc61 100644 --- a/test/test_translate_song.cxx +++ b/test/test_translate_song.cxx @@ -4,7 +4,7 @@ #include "config.h" #include "playlist/PlaylistSong.hxx" -#include "DetachedSong.hxx" +#include "song/DetachedSong.hxx" #include "SongLoader.hxx" #include "client/Client.hxx" #include "tag/Builder.hxx" |