diff options
author | Laurent Montel <montel@kde.org> | 2018-05-04 13:59:17 +0200 |
---|---|---|
committer | Laurent Montel <montel@kde.org> | 2018-05-04 13:59:17 +0200 |
commit | 3985f2a051914af249f219b79a8e062016f299cc (patch) | |
tree | 04954db63a1570e54c0cbc13737a7f09e9e21e94 /src/gui/kconfigloader.h | |
parent | fb08c56d2710fa7e3e998dde25eb30626e2a9d97 (diff) | |
download | kconfig-3985f2a051914af249f219b79a8e062016f299cc.tar.gz kconfig-3985f2a051914af249f219b79a8e062016f299cc.tar.bz2 |
Use override
Diffstat (limited to 'src/gui/kconfigloader.h')
-rw-r--r-- | src/gui/kconfigloader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/kconfigloader.h b/src/gui/kconfigloader.h index aa6b7538..33f7423a 100644 --- a/src/gui/kconfigloader.h +++ b/src/gui/kconfigloader.h @@ -131,7 +131,7 @@ public: **/ KConfigLoader(const KConfigGroup &config, QIODevice *xml, QObject *parent = nullptr); - ~KConfigLoader() Q_DECL_OVERRIDE; + ~KConfigLoader() override; /** * Finds the item for the given group and key. @@ -169,7 +169,7 @@ protected: /** * Hack used to force writing when no default exists in config file. */ - bool usrWriteConfig() Q_DECL_OVERRIDE; + bool usrWriteConfig() override; private: ConfigLoaderPrivate *const d; |