sticker/*: rename source files, drop "Sticker" prefix

This commit is contained in:
Max Kellermann 2019-04-24 15:15:19 +02:00
parent 3fe7f27345
commit 5a3828ed4a
10 changed files with 10 additions and 10 deletions

View File

@ -350,8 +350,8 @@ endif
if sqlite_dep.found() if sqlite_dep.found()
sources += [ sources += [
'src/command/StickerCommands.cxx', 'src/command/StickerCommands.cxx',
'src/sticker/StickerDatabase.cxx', 'src/sticker/Database.cxx',
'src/sticker/StickerPrint.cxx', 'src/sticker/Print.cxx',
'src/sticker/SongSticker.cxx', 'src/sticker/SongSticker.cxx',
] ]
endif endif

View File

@ -35,7 +35,7 @@
#include "storage/StorageInterface.hxx" #include "storage/StorageInterface.hxx"
#ifdef ENABLE_SQLITE #ifdef ENABLE_SQLITE
#include "sticker/StickerDatabase.hxx" #include "sticker/Database.hxx"
#include "sticker/SongSticker.hxx" #include "sticker/SongSticker.hxx"
#endif #endif
#endif #endif

View File

@ -82,7 +82,7 @@
#endif #endif
#ifdef ENABLE_SQLITE #ifdef ENABLE_SQLITE
#include "sticker/StickerDatabase.hxx" #include "sticker/Database.hxx"
#endif #endif
#ifdef ENABLE_ARCHIVE #ifdef ENABLE_ARCHIVE

View File

@ -46,7 +46,7 @@
#ifdef ENABLE_SQLITE #ifdef ENABLE_SQLITE
#include "StickerCommands.hxx" #include "StickerCommands.hxx"
#include "sticker/StickerDatabase.hxx" #include "sticker/Database.hxx"
#endif #endif
#include <assert.h> #include <assert.h>

View File

@ -23,8 +23,8 @@
#include "db/Interface.hxx" #include "db/Interface.hxx"
#include "sticker/Sticker.hxx" #include "sticker/Sticker.hxx"
#include "sticker/SongSticker.hxx" #include "sticker/SongSticker.hxx"
#include "sticker/StickerPrint.hxx" #include "sticker/Print.hxx"
#include "sticker/StickerDatabase.hxx" #include "sticker/Database.hxx"
#include "client/Client.hxx" #include "client/Client.hxx"
#include "client/Response.hxx" #include "client/Response.hxx"
#include "Partition.hxx" #include "Partition.hxx"

View File

@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "StickerDatabase.hxx" #include "Database.hxx"
#include "Sticker.hxx" #include "Sticker.hxx"
#include "lib/sqlite/Util.hxx" #include "lib/sqlite/Util.hxx"
#include "fs/Path.hxx" #include "fs/Path.hxx"

View File

@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "StickerPrint.hxx" #include "Print.hxx"
#include "Sticker.hxx" #include "Sticker.hxx"
#include "client/Response.hxx" #include "client/Response.hxx"

View File

@ -19,7 +19,7 @@
#include "SongSticker.hxx" #include "SongSticker.hxx"
#include "Sticker.hxx" #include "Sticker.hxx"
#include "StickerDatabase.hxx" #include "Database.hxx"
#include "song/LightSong.hxx" #include "song/LightSong.hxx"
#include "db/Interface.hxx" #include "db/Interface.hxx"
#include "util/Alloc.hxx" #include "util/Alloc.hxx"