aboutsummaryrefslogtreecommitdiff
path: root/src/qmmp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmmp')
-rw-r--r--src/qmmp/abstractengine.cpp2
-rw-r--r--src/qmmp/abstractengine.h2
-rw-r--r--src/qmmp/audioconverter.h2
-rw-r--r--src/qmmp/audioparameters.h2
-rw-r--r--src/qmmp/channelconverter_p.h4
-rw-r--r--src/qmmp/channelmap.h2
-rw-r--r--src/qmmp/decoderfactory.h2
-rw-r--r--src/qmmp/dithering_p.h4
-rw-r--r--src/qmmp/effect.cpp2
-rw-r--r--src/qmmp/effect.h2
-rw-r--r--src/qmmp/effectfactory.h2
-rw-r--r--src/qmmp/emptyinputsource_p.h6
-rw-r--r--src/qmmp/enginefactory.h2
-rw-r--r--src/qmmp/eqsettings.h2
-rw-r--r--src/qmmp/fileinputsource_p.h6
-rw-r--r--src/qmmp/inputsource.cpp2
-rw-r--r--src/qmmp/inputsource.h2
-rw-r--r--src/qmmp/inputsourcefactory.h2
-rw-r--r--src/qmmp/metadatamanager.cpp2
-rw-r--r--src/qmmp/metadatamanager.h2
-rw-r--r--src/qmmp/metadatamodel.cpp2
-rw-r--r--src/qmmp/metadatamodel.h2
-rw-r--r--src/qmmp/outputfactory.h2
-rw-r--r--src/qmmp/outputwriter.cpp2
-rw-r--r--src/qmmp/outputwriter_p.h4
-rw-r--r--src/qmmp/qmmp_export.h2
-rw-r--r--src/qmmp/qmmpaudioengine.cpp2
-rw-r--r--src/qmmp/qmmpaudioengine_p.h16
-rw-r--r--src/qmmp/qmmpevents.cpp2
-rw-r--r--src/qmmp/qmmpevents_p.h2
-rw-r--r--src/qmmp/qmmpplugincache.cpp2
-rw-r--r--src/qmmp/qmmpsettings.h2
-rw-r--r--src/qmmp/replaygain_p.h2
-rw-r--r--src/qmmp/soundcore.cpp2
-rw-r--r--src/qmmp/soundcore.h4
-rw-r--r--src/qmmp/statehandler.cpp2
-rw-r--r--src/qmmp/statehandler.h2
-rw-r--r--src/qmmp/tagmodel.cpp2
-rw-r--r--src/qmmp/tagmodel.h2
-rw-r--r--src/qmmp/trackinfo.cpp2
-rw-r--r--src/qmmp/trackinfo.h2
-rw-r--r--src/qmmp/visual.cpp2
-rw-r--r--src/qmmp/visual.h4
-rw-r--r--src/qmmp/visualfactory.h2
-rw-r--r--src/qmmp/volume.h2
-rw-r--r--src/qmmp/volumecontrol_p.h6
46 files changed, 64 insertions, 64 deletions
diff --git a/src/qmmp/abstractengine.cpp b/src/qmmp/abstractengine.cpp
index c1e0ba1ed..c61e41855 100644
--- a/src/qmmp/abstractengine.cpp
+++ b/src/qmmp/abstractengine.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/abstractengine.h b/src/qmmp/abstractengine.h
index e32b1a550..a10270da2 100644
--- a/src/qmmp/abstractengine.h
+++ b/src/qmmp/abstractengine.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/audioconverter.h b/src/qmmp/audioconverter.h
index 898162a60..fe34f937e 100644
--- a/src/qmmp/audioconverter.h
+++ b/src/qmmp/audioconverter.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2010-2018 by Ilya Kotov *
+ * Copyright (C) 2010-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/audioparameters.h b/src/qmmp/audioparameters.h
index 5a461bda8..2ad201ebd 100644
--- a/src/qmmp/audioparameters.h
+++ b/src/qmmp/audioparameters.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/channelconverter_p.h b/src/qmmp/channelconverter_p.h
index da886b934..c5d4097cc 100644
--- a/src/qmmp/channelconverter_p.h
+++ b/src/qmmp/channelconverter_p.h
@@ -31,8 +31,8 @@ class ChannelConverter : public Effect
public:
ChannelConverter(ChannelMap out_map);
~ChannelConverter();
- void configure(quint32 srate, ChannelMap in_map);
- void applyEffect(Buffer *b);
+ void configure(quint32 srate, ChannelMap in_map) override;
+ void applyEffect(Buffer *b) override;
private:
bool m_disabled;
diff --git a/src/qmmp/channelmap.h b/src/qmmp/channelmap.h
index 2c13a74b7..22ef6e203 100644
--- a/src/qmmp/channelmap.h
+++ b/src/qmmp/channelmap.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2014-2018 by Ilya Kotov *
+ * Copyright (C) 2014-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/decoderfactory.h b/src/qmmp/decoderfactory.h
index 5ed11da70..7130fa1a1 100644
--- a/src/qmmp/decoderfactory.h
+++ b/src/qmmp/decoderfactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2006-2018 by Ilya Kotov *
+ * Copyright (C) 2006-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/dithering_p.h b/src/qmmp/dithering_p.h
index 5196887e6..13db7af9c 100644
--- a/src/qmmp/dithering_p.h
+++ b/src/qmmp/dithering_p.h
@@ -34,9 +34,9 @@ class Dithering : public Effect
public:
Dithering();
- void configure(quint32 srate, ChannelMap map);
+ void configure(quint32 srate, ChannelMap map) override;
void setFormats(Qmmp::AudioFormat in, Qmmp::AudioFormat out);
- void applyEffect(Buffer *b);
+ void applyEffect(Buffer *b) override;
void setEnabled(bool enabled);
private:
diff --git a/src/qmmp/effect.cpp b/src/qmmp/effect.cpp
index ab921fd0e..67fc1f58c 100644
--- a/src/qmmp/effect.cpp
+++ b/src/qmmp/effect.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2007-2018 by Ilya Kotov *
+ * Copyright (C) 2007-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/effect.h b/src/qmmp/effect.h
index 6d0bc28e3..a3ca8f6bd 100644
--- a/src/qmmp/effect.h
+++ b/src/qmmp/effect.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2007-2018 by Ilya Kotov *
+ * Copyright (C) 2007-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/effectfactory.h b/src/qmmp/effectfactory.h
index 4232e1165..d5553d14d 100644
--- a/src/qmmp/effectfactory.h
+++ b/src/qmmp/effectfactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2007-2018 by Ilya Kotov *
+ * Copyright (C) 2007-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/emptyinputsource_p.h b/src/qmmp/emptyinputsource_p.h
index 156cc179b..874a8f83a 100644
--- a/src/qmmp/emptyinputsource_p.h
+++ b/src/qmmp/emptyinputsource_p.h
@@ -32,9 +32,9 @@ Q_OBJECT
public:
EmptyInputSource(const QString &path, QObject *parent = nullptr);
- QIODevice *ioDevice();
- bool initialize();
- bool isReady();
+ QIODevice *ioDevice() override;
+ bool initialize() override;
+ bool isReady() override;
private:
bool m_ok;
diff --git a/src/qmmp/enginefactory.h b/src/qmmp/enginefactory.h
index 6c0e9d3e8..a8807258f 100644
--- a/src/qmmp/enginefactory.h
+++ b/src/qmmp/enginefactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/eqsettings.h b/src/qmmp/eqsettings.h
index ac2f1d977..1019828e9 100644
--- a/src/qmmp/eqsettings.h
+++ b/src/qmmp/eqsettings.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2010-2018 by Ilya Kotov *
+ * Copyright (C) 2010-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/fileinputsource_p.h b/src/qmmp/fileinputsource_p.h
index a0ba947d5..d8e14e093 100644
--- a/src/qmmp/fileinputsource_p.h
+++ b/src/qmmp/fileinputsource_p.h
@@ -34,9 +34,9 @@ Q_OBJECT
public:
FileInputSource(const QString &path, QObject *parent = nullptr);
- QIODevice *ioDevice();
- bool initialize();
- bool isReady();
+ QIODevice *ioDevice() override;
+ bool initialize() override;
+ bool isReady() override;
private:
QFile *m_file;
diff --git a/src/qmmp/inputsource.cpp b/src/qmmp/inputsource.cpp
index bdcb21089..bc64a08ab 100644
--- a/src/qmmp/inputsource.cpp
+++ b/src/qmmp/inputsource.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/inputsource.h b/src/qmmp/inputsource.h
index bcbb5c28a..23b3d3896 100644
--- a/src/qmmp/inputsource.h
+++ b/src/qmmp/inputsource.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/inputsourcefactory.h b/src/qmmp/inputsourcefactory.h
index 115485005..423f2b823 100644
--- a/src/qmmp/inputsourcefactory.h
+++ b/src/qmmp/inputsourcefactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/metadatamanager.cpp b/src/qmmp/metadatamanager.cpp
index 76bc632a3..e0a07de45 100644
--- a/src/qmmp/metadatamanager.cpp
+++ b/src/qmmp/metadatamanager.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/metadatamanager.h b/src/qmmp/metadatamanager.h
index ac88f8a47..031a2e55c 100644
--- a/src/qmmp/metadatamanager.h
+++ b/src/qmmp/metadatamanager.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/metadatamodel.cpp b/src/qmmp/metadatamodel.cpp
index 0d75b9049..309e11a64 100644
--- a/src/qmmp/metadatamodel.cpp
+++ b/src/qmmp/metadatamodel.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/metadatamodel.h b/src/qmmp/metadatamodel.h
index a9163410f..567d83a61 100644
--- a/src/qmmp/metadatamodel.h
+++ b/src/qmmp/metadatamodel.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/outputfactory.h b/src/qmmp/outputfactory.h
index 5fe4c135f..33fc750af 100644
--- a/src/qmmp/outputfactory.h
+++ b/src/qmmp/outputfactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2007-2018 by Ilya Kotov *
+ * Copyright (C) 2007-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/outputwriter.cpp b/src/qmmp/outputwriter.cpp
index a5e5e0925..b4da5af2f 100644
--- a/src/qmmp/outputwriter.cpp
+++ b/src/qmmp/outputwriter.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2012-2017 by Ilya Kotov *
+ * Copyright (C) 2012-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/outputwriter_p.h b/src/qmmp/outputwriter_p.h
index 4cd72e6cb..5f87e8ed9 100644
--- a/src/qmmp/outputwriter_p.h
+++ b/src/qmmp/outputwriter_p.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2012-2017 by Ilya Kotov *
+ * Copyright (C) 2012-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -92,7 +92,7 @@ public:
void updateEqSettings();
private:
- void run(); //thread run function
+ void run() override; //thread run function
void status();
void dispatch(qint64 elapsed, int bitrate);
void dispatch(const Qmmp::State &state);
diff --git a/src/qmmp/qmmp_export.h b/src/qmmp/qmmp_export.h
index 327ff7efc..1d378a9ce 100644
--- a/src/qmmp/qmmp_export.h
+++ b/src/qmmp/qmmp_export.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2017-2018 by Ilya Kotov *
+ * Copyright (C) 2017-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/qmmpaudioengine.cpp b/src/qmmp/qmmpaudioengine.cpp
index f7591581f..d140a5bea 100644
--- a/src/qmmp/qmmpaudioengine.cpp
+++ b/src/qmmp/qmmpaudioengine.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2017 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/qmmpaudioengine_p.h b/src/qmmp/qmmpaudioengine_p.h
index 3443ff74b..b93f8bb6d 100644
--- a/src/qmmp/qmmpaudioengine_p.h
+++ b/src/qmmp/qmmpaudioengine_p.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2017 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -52,12 +52,12 @@ public:
QmmpAudioEngine(QObject *parent);
~QmmpAudioEngine();
- bool play();
- bool enqueue(InputSource *source);
- void seek(qint64 time);
- void stop();
- void pause();
- void setMuted(bool muted);
+ bool play() override;
+ bool enqueue(InputSource *source) override;
+ void seek(qint64 time) override;
+ void stop() override;
+ void pause() override;
+ void setMuted(bool muted) override;
void addEffect(EffectFactory *factory);
void removeEffect(EffectFactory *factory);
@@ -70,7 +70,7 @@ private slots:
void updateEqSettings();
private:
- void run();
+ void run() override;
void reset();
void clearDecoders();
void flush(bool = false);
diff --git a/src/qmmp/qmmpevents.cpp b/src/qmmp/qmmpevents.cpp
index a38048cc4..43199604b 100644
--- a/src/qmmp/qmmpevents.cpp
+++ b/src/qmmp/qmmpevents.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2011-2018 by Ilya Kotov *
+ * Copyright (C) 2011-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/qmmpevents_p.h b/src/qmmp/qmmpevents_p.h
index f262c8290..ccbc195fb 100644
--- a/src/qmmp/qmmpevents_p.h
+++ b/src/qmmp/qmmpevents_p.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2011-2018 by Ilya Kotov *
+ * Copyright (C) 2011-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/qmmpplugincache.cpp b/src/qmmp/qmmpplugincache.cpp
index 9e289bb90..147c29f45 100644
--- a/src/qmmp/qmmpplugincache.cpp
+++ b/src/qmmp/qmmpplugincache.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2013-2018 by Ilya Kotov *
+ * Copyright (C) 2013-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/qmmpsettings.h b/src/qmmp/qmmpsettings.h
index bce4f39fd..de9a4a985 100644
--- a/src/qmmp/qmmpsettings.h
+++ b/src/qmmp/qmmpsettings.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2010-2018 by Ilya Kotov *
+ * Copyright (C) 2010-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/replaygain_p.h b/src/qmmp/replaygain_p.h
index 66e902691..8c86aaa42 100644
--- a/src/qmmp/replaygain_p.h
+++ b/src/qmmp/replaygain_p.h
@@ -39,7 +39,7 @@ public:
void updateSettings(QmmpSettings::ReplayGainMode mode, double preamp,
double default_gain, bool clip);
void setReplayGainInfo(const QMap<Qmmp::ReplayGainKey, double> &info);
- void applyEffect(Buffer *b);
+ void applyEffect(Buffer *b) override;
private:
void updateScale();
diff --git a/src/qmmp/soundcore.cpp b/src/qmmp/soundcore.cpp
index d5e0aa33b..5b18a9bfe 100644
--- a/src/qmmp/soundcore.cpp
+++ b/src/qmmp/soundcore.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2006-2018 by Ilya Kotov *
+ * Copyright (C) 2006-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/soundcore.h b/src/qmmp/soundcore.h
index 559c15093..1d47199df 100644
--- a/src/qmmp/soundcore.h
+++ b/src/qmmp/soundcore.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2006-2018 by Ilya Kotov *
+ * Copyright (C) 2006-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -257,7 +257,7 @@ private slots:
void startNextEngine();
private:
- bool event(QEvent *e);
+ bool event(QEvent *e) override;
enum NextEngineState
{
NO_ENGINE = 0,
diff --git a/src/qmmp/statehandler.cpp b/src/qmmp/statehandler.cpp
index e6d13784e..6ad995b35 100644
--- a/src/qmmp/statehandler.cpp
+++ b/src/qmmp/statehandler.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2018 by Ilya Kotov *
+ * Copyright (C) 2008-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/statehandler.h b/src/qmmp/statehandler.h
index 9dc9ca361..2f6b0151c 100644
--- a/src/qmmp/statehandler.h
+++ b/src/qmmp/statehandler.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2018 by Ilya Kotov *
+ * Copyright (C) 2008-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/tagmodel.cpp b/src/qmmp/tagmodel.cpp
index 9dcede5cc..5594a34fc 100644
--- a/src/qmmp/tagmodel.cpp
+++ b/src/qmmp/tagmodel.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/tagmodel.h b/src/qmmp/tagmodel.h
index aff99abfa..936a51bc0 100644
--- a/src/qmmp/tagmodel.h
+++ b/src/qmmp/tagmodel.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2009-2018 by Ilya Kotov *
+ * Copyright (C) 2009-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/trackinfo.cpp b/src/qmmp/trackinfo.cpp
index 6331bd829..f71affca0 100644
--- a/src/qmmp/trackinfo.cpp
+++ b/src/qmmp/trackinfo.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2018 by Ilya Kotov *
+ * Copyright (C) 2018-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/trackinfo.h b/src/qmmp/trackinfo.h
index 9ec077eca..252d3468e 100644
--- a/src/qmmp/trackinfo.h
+++ b/src/qmmp/trackinfo.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2018 by Ilya Kotov *
+ * Copyright (C) 2018-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/visual.cpp b/src/qmmp/visual.cpp
index 6a746258a..4bd820ac4 100644
--- a/src/qmmp/visual.cpp
+++ b/src/qmmp/visual.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2018 by Ilya Kotov *
+ * Copyright (C) 2008-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/visual.h b/src/qmmp/visual.h
index e14446240..e71ccb33c 100644
--- a/src/qmmp/visual.h
+++ b/src/qmmp/visual.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2018 by Ilya Kotov *
+ * Copyright (C) 2008-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -129,7 +129,7 @@ protected:
* QWidget's close event. Reimplementation should call base function.
* @param event QCloseEvent insatance.
*/
- virtual void closeEvent (QCloseEvent *event);
+ virtual void closeEvent (QCloseEvent *event) override;
/*!
* Takes visualization data. Caller should allocate \b QMMP_VISUAL_NODE_SIZE
* bytes for each channel. If buffer for right channel is not specified,
diff --git a/src/qmmp/visualfactory.h b/src/qmmp/visualfactory.h
index e38e0bb0e..4fdb3f54b 100644
--- a/src/qmmp/visualfactory.h
+++ b/src/qmmp/visualfactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2018 by Ilya Kotov *
+ * Copyright (C) 2008-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/volume.h b/src/qmmp/volume.h
index dcaf134f7..5ef80cba3 100644
--- a/src/qmmp/volume.h
+++ b/src/qmmp/volume.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2012-2018 by Ilya Kotov *
+ * Copyright (C) 2012-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/qmmp/volumecontrol_p.h b/src/qmmp/volumecontrol_p.h
index 00cd4d676..1f5e5f84b 100644
--- a/src/qmmp/volumecontrol_p.h
+++ b/src/qmmp/volumecontrol_p.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2018 by Ilya Kotov *
+ * Copyright (C) 2008-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -129,8 +129,8 @@ public:
SoftwareVolume();
~SoftwareVolume();
- void setVolume(const VolumeSettings &v);
- VolumeSettings volume() const;
+ void setVolume(const VolumeSettings &v) override;
+ VolumeSettings volume() const override;
void changeVolume(Buffer *b, int chan);
static SoftwareVolume *instance();