diff options
author | Max Kellermann <max@duempel.org> | 2014-01-24 16:15:41 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-24 16:38:15 +0100 |
commit | 973c9872f930d73a8ddc98e4802b242aea9f0dba (patch) | |
tree | 2c6a2d086fa3a7b04d98290a3d50fed8694bdb5a | |
parent | eef7ba48ddb060c14caa5be27faeabe6f82b3e08 (diff) | |
download | mpd-973c9872f930d73a8ddc98e4802b242aea9f0dba.tar.gz mpd-973c9872f930d73a8ddc98e4802b242aea9f0dba.tar.xz mpd-973c9872f930d73a8ddc98e4802b242aea9f0dba.zip |
Sticker*: move to sticker/
-rw-r--r-- | Makefile.am | 6 | ||||
-rw-r--r-- | src/Main.cxx | 2 | ||||
-rw-r--r-- | src/command/AllCommands.cxx | 2 | ||||
-rw-r--r-- | src/command/StickerCommands.cxx | 6 | ||||
-rw-r--r-- | src/sticker/SongSticker.cxx (renamed from src/SongSticker.cxx) | 0 | ||||
-rw-r--r-- | src/sticker/SongSticker.hxx (renamed from src/SongSticker.hxx) | 0 | ||||
-rw-r--r-- | src/sticker/StickerDatabase.cxx (renamed from src/StickerDatabase.cxx) | 0 | ||||
-rw-r--r-- | src/sticker/StickerDatabase.hxx (renamed from src/StickerDatabase.hxx) | 0 | ||||
-rw-r--r-- | src/sticker/StickerPrint.cxx (renamed from src/StickerPrint.cxx) | 0 | ||||
-rw-r--r-- | src/sticker/StickerPrint.hxx (renamed from src/StickerPrint.hxx) | 0 | ||||
-rw-r--r-- | src/update/UpdateRemove.cxx | 4 |
11 files changed, 10 insertions, 10 deletions
diff --git a/Makefile.am b/Makefile.am index 87ca79a70..74909e27d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -244,9 +244,9 @@ endif if ENABLE_SQLITE src_mpd_SOURCES += \ src/command/StickerCommands.cxx src/command/StickerCommands.hxx \ - src/StickerDatabase.cxx src/StickerDatabase.hxx \ - src/StickerPrint.cxx src/StickerPrint.hxx \ - src/SongSticker.cxx src/SongSticker.hxx + src/sticker/StickerDatabase.cxx src/sticker/StickerDatabase.hxx \ + src/sticker/StickerPrint.cxx src/sticker/StickerPrint.hxx \ + src/sticker/SongSticker.cxx src/sticker/SongSticker.hxx endif # Generic utility library diff --git a/src/Main.cxx b/src/Main.cxx index 912e28a62..815f26f0a 100644 --- a/src/Main.cxx +++ b/src/Main.cxx @@ -72,7 +72,7 @@ #endif #ifdef ENABLE_SQLITE -#include "StickerDatabase.hxx" +#include "sticker/StickerDatabase.hxx" #endif #ifdef ENABLE_ARCHIVE diff --git a/src/command/AllCommands.cxx b/src/command/AllCommands.cxx index ed1858ea8..ce753b300 100644 --- a/src/command/AllCommands.cxx +++ b/src/command/AllCommands.cxx @@ -37,7 +37,7 @@ #ifdef ENABLE_SQLITE #include "StickerCommands.hxx" -#include "StickerDatabase.hxx" +#include "sticker/StickerDatabase.hxx" #endif #include <assert.h> diff --git a/src/command/StickerCommands.cxx b/src/command/StickerCommands.cxx index 4272dee69..cf1be076b 100644 --- a/src/command/StickerCommands.cxx +++ b/src/command/StickerCommands.cxx @@ -24,9 +24,9 @@ #include "DatabasePlugin.hxx" #include "DatabaseGlue.hxx" #include "DatabaseSimple.hxx" -#include "SongSticker.hxx" -#include "StickerPrint.hxx" -#include "StickerDatabase.hxx" +#include "sticker/SongSticker.hxx" +#include "sticker/StickerPrint.hxx" +#include "sticker/StickerDatabase.hxx" #include "CommandError.hxx" #include "protocol/Result.hxx" #include "util/Error.hxx" diff --git a/src/SongSticker.cxx b/src/sticker/SongSticker.cxx index 55143d278..55143d278 100644 --- a/src/SongSticker.cxx +++ b/src/sticker/SongSticker.cxx diff --git a/src/SongSticker.hxx b/src/sticker/SongSticker.hxx index 2f977bd21..2f977bd21 100644 --- a/src/SongSticker.hxx +++ b/src/sticker/SongSticker.hxx diff --git a/src/StickerDatabase.cxx b/src/sticker/StickerDatabase.cxx index 93eaa900d..93eaa900d 100644 --- a/src/StickerDatabase.cxx +++ b/src/sticker/StickerDatabase.cxx diff --git a/src/StickerDatabase.hxx b/src/sticker/StickerDatabase.hxx index 8993489c4..8993489c4 100644 --- a/src/StickerDatabase.hxx +++ b/src/sticker/StickerDatabase.hxx diff --git a/src/StickerPrint.cxx b/src/sticker/StickerPrint.cxx index a952ff203..a952ff203 100644 --- a/src/StickerPrint.cxx +++ b/src/sticker/StickerPrint.cxx diff --git a/src/StickerPrint.hxx b/src/sticker/StickerPrint.hxx index 39f3dc09e..39f3dc09e 100644 --- a/src/StickerPrint.hxx +++ b/src/sticker/StickerPrint.hxx diff --git a/src/update/UpdateRemove.cxx b/src/update/UpdateRemove.cxx index bed7a92ab..30898b00b 100644 --- a/src/update/UpdateRemove.cxx +++ b/src/update/UpdateRemove.cxx @@ -30,8 +30,8 @@ #include "Log.hxx" #ifdef ENABLE_SQLITE -#include "StickerDatabase.hxx" -#include "SongSticker.hxx" +#include "sticker/StickerDatabase.hxx" +#include "sticker/SongSticker.hxx" #endif #include <assert.h> |