Change parameter order of CollectionBackend::Init

This commit is contained in:
Jonas Kvinge
2021-06-28 00:03:36 +02:00
parent ca42286354
commit 0869651dc3
8 changed files with 14 additions and 14 deletions

View File

@@ -62,7 +62,7 @@ CollectionBackend::CollectionBackend(QObject *parent) :
}
void CollectionBackend::Init(Database *db, const Song::Source source, const QString &songs_table, const QString &dirs_table, const QString &subdirs_table, const QString &fts_table) {
void CollectionBackend::Init(Database *db, const Song::Source source, const QString &songs_table, const QString &fts_table, const QString &dirs_table, const QString &subdirs_table) {
db_ = db;
source_ = source;
songs_table_ = songs_table;