Use override

This commit is contained in:
Jonas Kvinge
2020-06-15 21:55:05 +02:00
parent 72ede666d4
commit 651020388d
271 changed files with 1199 additions and 1231 deletions

View File

@@ -59,7 +59,7 @@ class Organise : public QObject {
typedef QList<NewSongInfo> NewSongInfoList;
explicit Organise(TaskManager *task_manager, std::shared_ptr<MusicStorage> destination, const OrganiseFormat &format, bool copy, bool overwrite, bool mark_as_listened, bool albumcover, const NewSongInfoList &songs, bool eject_after, const QString &playlist = QString());
~Organise();
~Organise() override;
static const int kBatchSize;
#ifdef HAVE_GSTREAMER
@@ -74,7 +74,7 @@ class Organise : public QObject {
void SongPathChanged(const Song &song, const QFileInfo &new_file);
protected:
void timerEvent(QTimerEvent *e);
void timerEvent(QTimerEvent *e) override;
private slots:
void ProcessSomeFiles();