diff options
author | Kevin Funk <kfunk@kde.org> | 2015-02-12 00:17:57 +0100 |
---|---|---|
committer | Kevin Funk <kfunk@kde.org> | 2015-02-12 13:54:33 +0100 |
commit | 28ddbf8138c865e19e8836b49af74f9d3bc20401 (patch) | |
tree | f4c0540132f4e79ff684915a33aa4c12666da2f4 /src/gui/kconfigloader.h | |
parent | 11585e2fccf742798ab3396726f87323b54b3ac9 (diff) | |
download | kconfig-28ddbf8138c865e19e8836b49af74f9d3bc20401.tar.gz kconfig-28ddbf8138c865e19e8836b49af74f9d3bc20401.tar.bz2 |
Use Q_DECL_OVERRIDE where possible
With -Winconsistent-missing-override (Clang), headers from KConfig are
throwing a lot of warnings.
REVIEW: 122539
Diffstat (limited to 'src/gui/kconfigloader.h')
-rw-r--r-- | src/gui/kconfigloader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kconfigloader.h b/src/gui/kconfigloader.h index aadb19a5..341bdc4f 100644 --- a/src/gui/kconfigloader.h +++ b/src/gui/kconfigloader.h @@ -169,7 +169,7 @@ protected: /** * Hack used to force writing when no default exists in config file. */ - bool usrWriteConfig(); + bool usrWriteConfig() Q_DECL_OVERRIDE; private: ConfigLoaderPrivate *const d; |