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/classeditor/ClassEditorWindow.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/classeditor/ClassEditorWindow.h')
| -rw-r--r-- | src/modules/classeditor/ClassEditorWindow.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/classeditor/ClassEditorWindow.h b/src/modules/classeditor/ClassEditorWindow.h index e12386a5e..c320937a2 100644 --- a/src/modules/classeditor/ClassEditorWindow.h +++ b/src/modules/classeditor/ClassEditorWindow.h @@ -73,7 +73,7 @@ public: ~ClassEditorTreeWidget(); protected: - virtual void mousePressEvent(QMouseEvent * e); + void mousePressEvent(QMouseEvent * e) override; signals: /** * \brief Emitted when we press the mouse right button @@ -305,14 +305,14 @@ public: * \param pCfg The configuration file * \return void */ - virtual void saveProperties(KviConfigurationFile * pCfg); + void saveProperties(KviConfigurationFile * pCfg); /** * \brief Called to load the window properties * \param pCfg The configuration file * \return void */ - virtual void loadProperties(KviConfigurationFile * pCfg); + void loadProperties(KviConfigurationFile * pCfg); /** * \brief Builds the class! @@ -497,7 +497,7 @@ protected: * \brief Returns the class editor small icon * \return QPixmap * */ - virtual QPixmap * myIconPtr(); + QPixmap * myIconPtr() override; /** * \brief Sets the configuration group name as classeditor @@ -511,14 +511,14 @@ protected: * \param pCfg The configuration file * \return void */ - virtual void saveProperties(KviConfigurationFile * pCfg); + void saveProperties(KviConfigurationFile * pCfg) override; /** * \brief Called to load the window properties * \param pCfg The configuration file * \return void */ - virtual void loadProperties(KviConfigurationFile * pCfg); + void loadProperties(KviConfigurationFile * pCfg) override; protected slots: /** * \brief Called when we click the cancel button |
