aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/avatar
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/avatar
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/avatar')
-rw-r--r--src/modules/avatar/libkviavatar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/avatar/libkviavatar.h b/src/modules/avatar/libkviavatar.h
index 0509ebc2f..54f3c5a5a 100644
--- a/src/modules/avatar/libkviavatar.h
+++ b/src/modules/avatar/libkviavatar.h
@@ -45,7 +45,7 @@ protected:
KviIrcConnection * m_pConnection;
protected:
- virtual void closeEvent(QCloseEvent * e);
+ void closeEvent(QCloseEvent * e) override;
const QString & avatarName() { return m_szAvatarName; };
protected slots:
void okClicked();