aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/help
diff options
context:
space:
mode:
authorGravatar IceN9ne2018-11-28 22:00:54 -0500
committerGravatar IceN9ne2018-11-28 22:02:03 -0500
commit2c52bee29d4636bcdce407ac91b353d34d89258c (patch)
tree2da7f0051d989cbf027863fef7955590d2869405 /src/modules/help
parentRemove unnecessary usages of the inline keyword per language evolution. (diff)
downloadKVIrc-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/help')
-rw-r--r--src/modules/help/HelpWindow.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/help/HelpWindow.h b/src/modules/help/HelpWindow.h
index 1447d15dc..865fb5fee 100644
--- a/src/modules/help/HelpWindow.h
+++ b/src/modules/help/HelpWindow.h
@@ -72,11 +72,11 @@ protected:
public:
HelpWidget * helpWidget() { return m_pHelpWidget; };
protected:
- virtual QPixmap * myIconPtr();
- virtual void fillCaptionBuffers();
- virtual void resizeEvent(QResizeEvent * e);
- virtual void saveProperties(KviConfigurationFile * cfg);
- virtual void loadProperties(KviConfigurationFile * cfg);
+ QPixmap * myIconPtr() override;
+ void fillCaptionBuffers() override;
+ void resizeEvent(QResizeEvent * e) override;
+ void saveProperties(KviConfigurationFile * cfg) override;
+ void loadProperties(KviConfigurationFile * cfg) override;
public:
#ifdef COMPILE_WEBKIT_SUPPORT