diff options
Diffstat (limited to 'src/plugins/General/streambrowser')
5 files changed, 11 insertions, 11 deletions
diff --git a/src/plugins/General/streambrowser/editstreamdialog.cpp b/src/plugins/General/streambrowser/editstreamdialog.cpp index 132738111..2828db5e8 100644 --- a/src/plugins/General/streambrowser/editstreamdialog.cpp +++ b/src/plugins/General/streambrowser/editstreamdialog.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/General/streambrowser/editstreamdialog.h b/src/plugins/General/streambrowser/editstreamdialog.h index 4f6ddc500..8e2d77bbb 100644 --- a/src/plugins/General/streambrowser/editstreamdialog.h +++ b/src/plugins/General/streambrowser/editstreamdialog.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 * @@ -46,7 +46,7 @@ public: }; public slots: - void accept(); + void accept() override; void setValues(const QMap<Key, QString> &values); const QMap<Key, QString> &values() const; diff --git a/src/plugins/General/streambrowser/streambrowser.cpp b/src/plugins/General/streambrowser/streambrowser.cpp index 44f473482..ebb4c35c5 100644 --- a/src/plugins/General/streambrowser/streambrowser.cpp +++ b/src/plugins/General/streambrowser/streambrowser.cpp @@ -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/plugins/General/streambrowser/streambrowserfactory.h b/src/plugins/General/streambrowser/streambrowserfactory.h index c4436ff81..5a39115d8 100644 --- a/src/plugins/General/streambrowser/streambrowserfactory.h +++ b/src/plugins/General/streambrowser/streambrowserfactory.h @@ -35,11 +35,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/streambrowser/streamwindow.h b/src/plugins/General/streambrowser/streamwindow.h index 4bdd731a9..34bc7bab3 100644 --- a/src/plugins/General/streambrowser/streamwindow.h +++ b/src/plugins/General/streambrowser/streamwindow.h @@ -59,7 +59,7 @@ private slots: void removeFromFavorites(); private: - void closeEvent(QCloseEvent *); + void closeEvent(QCloseEvent *) override; void readXml(QIODevice *input, QStandardItemModel *model); void createInitialConfig(); @@ -84,7 +84,7 @@ public: StreamsProxyModel(QObject *parent) : QSortFilterProxyModel(parent){} protected: - bool lessThan (const QModelIndex &left, const QModelIndex &right) const + bool lessThan (const QModelIndex &left, const QModelIndex &right) const override { if(left.column() == 2 && right.column() == 2) { |
