sticker/*: rename source files, drop "Sticker" prefix
This commit is contained in:
parent
3fe7f27345
commit
5a3828ed4a
|
@ -350,8 +350,8 @@ endif
|
|||
if sqlite_dep.found()
|
||||
sources += [
|
||||
'src/command/StickerCommands.cxx',
|
||||
'src/sticker/StickerDatabase.cxx',
|
||||
'src/sticker/StickerPrint.cxx',
|
||||
'src/sticker/Database.cxx',
|
||||
'src/sticker/Print.cxx',
|
||||
'src/sticker/SongSticker.cxx',
|
||||
]
|
||||
endif
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
#include "storage/StorageInterface.hxx"
|
||||
|
||||
#ifdef ENABLE_SQLITE
|
||||
#include "sticker/StickerDatabase.hxx"
|
||||
#include "sticker/Database.hxx"
|
||||
#include "sticker/SongSticker.hxx"
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
#endif
|
||||
|
||||
#ifdef ENABLE_SQLITE
|
||||
#include "sticker/StickerDatabase.hxx"
|
||||
#include "sticker/Database.hxx"
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_ARCHIVE
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
|
||||
#ifdef ENABLE_SQLITE
|
||||
#include "StickerCommands.hxx"
|
||||
#include "sticker/StickerDatabase.hxx"
|
||||
#include "sticker/Database.hxx"
|
||||
#endif
|
||||
|
||||
#include <assert.h>
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
#include "db/Interface.hxx"
|
||||
#include "sticker/Sticker.hxx"
|
||||
#include "sticker/SongSticker.hxx"
|
||||
#include "sticker/StickerPrint.hxx"
|
||||
#include "sticker/StickerDatabase.hxx"
|
||||
#include "sticker/Print.hxx"
|
||||
#include "sticker/Database.hxx"
|
||||
#include "client/Client.hxx"
|
||||
#include "client/Response.hxx"
|
||||
#include "Partition.hxx"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#include "StickerDatabase.hxx"
|
||||
#include "Database.hxx"
|
||||
#include "Sticker.hxx"
|
||||
#include "lib/sqlite/Util.hxx"
|
||||
#include "fs/Path.hxx"
|
|
@ -17,7 +17,7 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#include "StickerPrint.hxx"
|
||||
#include "Print.hxx"
|
||||
#include "Sticker.hxx"
|
||||
#include "client/Response.hxx"
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
#include "SongSticker.hxx"
|
||||
#include "Sticker.hxx"
|
||||
#include "StickerDatabase.hxx"
|
||||
#include "Database.hxx"
|
||||
#include "song/LightSong.hxx"
|
||||
#include "db/Interface.hxx"
|
||||
#include "util/Alloc.hxx"
|
||||
|
|
Loading…
Reference in New Issue