diff options
| author | 2018-11-28 22:00:54 -0500 | |
|---|---|---|
| committer | 2018-11-28 22:02:03 -0500 | |
| commit | 2c52bee29d4636bcdce407ac91b353d34d89258c (patch) | |
| tree | 2da7f0051d989cbf027863fef7955590d2869405 /src/modules/addon/PackAddonDialog.h | |
| parent | Remove unnecessary usages of the inline keyword per language evolution. (diff) | |
| download | KVIrc-2c52bee29d4636bcdce407ac91b353d34d89258c.tar.gz KVIrc-2c52bee29d4636bcdce407ac91b353d34d89258c.tar.bz2 KVIrc-2c52bee29d4636bcdce407ac91b353d34d89258c.zip | |
Use override where possible and remove unnecessary usages of the virtual keyword.
Diffstat (limited to 'src/modules/addon/PackAddonDialog.h')
| -rw-r--r-- | src/modules/addon/PackAddonDialog.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/addon/PackAddonDialog.h b/src/modules/addon/PackAddonDialog.h index d6ddec1f1..4464f2da0 100644 --- a/src/modules/addon/PackAddonDialog.h +++ b/src/modules/addon/PackAddonDialog.h @@ -92,7 +92,7 @@ protected: * \brief Runs the packAddon() function and closes the wizard * \return void */ - virtual void accept(); + void accept() override; /** * \brief Creates the addon package @@ -201,7 +201,7 @@ protected: * \brief Perform initial tasks before showing the widget * \return void */ - virtual void initializePage(); + void initializePage() override; }; /** @@ -232,7 +232,7 @@ protected: * \brief Perform initial tasks before showing the widget * \return void */ - virtual void initializePage(); + void initializePage() override; }; class PackAddonSummaryFilesWidget : public QDialog @@ -249,10 +249,10 @@ protected: public: void setPath(QString & szPath) { m_szPath = szPath; }; protected: - virtual void showEvent(QShowEvent *); + void showEvent(QShowEvent *) override; protected slots: - virtual void accept(); - virtual void reject(); + void accept() override; + void reject() override; }; #endif //!_PACKADDONDIALOG_H_ |
