Organize: Remove unused "mark as listened" option

This commit is contained in:
Jonas Kvinge
2021-10-24 23:19:01 +02:00
parent d29a1de980
commit 30269d9d95
5 changed files with 4 additions and 22 deletions

View File

@@ -61,7 +61,7 @@ class Organize : public QObject {
};
typedef QList<NewSongInfo> NewSongInfoList;
explicit Organize(TaskManager *task_manager, std::shared_ptr<MusicStorage> destination, const OrganizeFormat &format, const bool copy, const bool overwrite, const bool mark_as_listened, const bool albumcover, const NewSongInfoList &songs, const bool eject_after, const QString &playlist = QString(), QObject *parent = nullptr);
explicit Organize(TaskManager *task_manager, std::shared_ptr<MusicStorage> destination, const OrganizeFormat &format, const bool copy, const bool overwrite, const bool albumcover, const NewSongInfoList &songs, const bool eject_after, const QString &playlist = QString(), QObject *parent = nullptr);
~Organize() override;
static const int kBatchSize;
@@ -117,7 +117,6 @@ class Organize : public QObject {
const OrganizeFormat format_;
const bool copy_;
const bool overwrite_;
const bool mark_as_listened_;
const bool albumcover_;
const bool eject_after_;
int task_count_;