diff options
Diffstat (limited to 'src/plugins/Effect/monotostereo')
4 files changed, 11 insertions, 11 deletions
diff --git a/src/plugins/Effect/monotostereo/effectmonotostereofactory.cpp b/src/plugins/Effect/monotostereo/effectmonotostereofactory.cpp index 6bae99ddd..56b0d9851 100644 --- a/src/plugins/Effect/monotostereo/effectmonotostereofactory.cpp +++ b/src/plugins/Effect/monotostereo/effectmonotostereofactory.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/plugins/Effect/monotostereo/effectmonotostereofactory.h b/src/plugins/Effect/monotostereo/effectmonotostereofactory.h index ee1ddc9f1..ca0a6edf6 100644 --- a/src/plugins/Effect/monotostereo/effectmonotostereofactory.h +++ b/src/plugins/Effect/monotostereo/effectmonotostereofactory.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 * @@ -34,11 +34,11 @@ Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.EffectFactoryInterface.1.0") Q_INTERFACES(EffectFactory) public: - const EffectProperties properties() const; - Effect *create(); - void showSettings(QWidget *parent); - void showAbout(QWidget *parent); - QString translation() const; + const EffectProperties properties() const override; + Effect *create() override; + void showSettings(QWidget *parent) override; + void showAbout(QWidget *parent) override; + QString translation() const override; }; diff --git a/src/plugins/Effect/monotostereo/monotostereoplugin.cpp b/src/plugins/Effect/monotostereo/monotostereoplugin.cpp index 7a852bd0e..ec9fc15f5 100644 --- a/src/plugins/Effect/monotostereo/monotostereoplugin.cpp +++ b/src/plugins/Effect/monotostereo/monotostereoplugin.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/plugins/Effect/monotostereo/monotostereoplugin.h b/src/plugins/Effect/monotostereo/monotostereoplugin.h index a3a92f2d1..cd9c8f109 100644 --- a/src/plugins/Effect/monotostereo/monotostereoplugin.h +++ b/src/plugins/Effect/monotostereo/monotostereoplugin.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 * @@ -33,8 +33,8 @@ public: virtual ~MonoToStereoPlugin(); - void applyEffect(Buffer *b); - void configure(quint32 freq, ChannelMap map); + void applyEffect(Buffer *b) override; + void configure(quint32 freq, ChannelMap map) override; private: bool m_enabled; |
