diff options
Diffstat (limited to 'src/plugins/General/covermanager')
| -rw-r--r-- | src/plugins/General/covermanager/covermanagerfactory.h | 10 | ||||
| -rw-r--r-- | src/plugins/General/covermanager/coverwidget.h | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/General/covermanager/covermanagerfactory.h b/src/plugins/General/covermanager/covermanagerfactory.h index b4d838cf9..9e60216c7 100644 --- a/src/plugins/General/covermanager/covermanagerfactory.h +++ b/src/plugins/General/covermanager/covermanagerfactory.h @@ -34,11 +34,11 @@ Q_OBJECT Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.GeneralFactoryInterface.1.0") Q_INTERFACES(GeneralFactory) public: - GeneralProperties properties() const; - QObject *create(QObject *parent); - QDialog *createConfigDialog(QWidget *parent); - void showAbout(QWidget *parent); - QString translation() const; + GeneralProperties properties() const override; + QObject *create(QObject *parent) override; + QDialog *createConfigDialog(QWidget *parent) override; + void showAbout(QWidget *parent) override; + QString translation() const override; }; #endif diff --git a/src/plugins/General/covermanager/coverwidget.h b/src/plugins/General/covermanager/coverwidget.h index 55ee9a2eb..535d781dc 100644 --- a/src/plugins/General/covermanager/coverwidget.h +++ b/src/plugins/General/covermanager/coverwidget.h @@ -41,8 +41,8 @@ public: virtual void setPixmap(const QPixmap&); protected: - void paintEvent (QPaintEvent *event); - void mousePressEvent (QMouseEvent * event); + void paintEvent (QPaintEvent *event) override; + void mousePressEvent (QMouseEvent * event) override; private slots: void saveAs(); |
