diff options
author | David Faure <faure@kde.org> | 2013-12-18 09:53:59 +0100 |
---|---|---|
committer | David Faure <faure@kde.org> | 2013-12-18 09:53:59 +0100 |
commit | 159963832457e6307282308455330acc7b5bd153 (patch) | |
tree | ce1cc0234d37e9afc75bc86d734beb963ed57d02 /src/core/kconfigbase.cpp | |
parent | 867e7a50e6396338ab4fe9aa22ad141e4cd344d2 (diff) | |
download | kconfig-159963832457e6307282308455330acc7b5bd153.tar.gz kconfig-159963832457e6307282308455330acc7b5bd153.tar.bz2 |
Code reformatted using kde-dev-scripts/astyle-kdelibs.
Use git blame -w 867e7a5 to show authorship as it was before this commit.
Diffstat (limited to 'src/core/kconfigbase.cpp')
-rw-r--r-- | src/core/kconfigbase.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/core/kconfigbase.cpp b/src/core/kconfigbase.cpp index 4be7ac23..8cda588f 100644 --- a/src/core/kconfigbase.cpp +++ b/src/core/kconfigbase.cpp @@ -41,32 +41,32 @@ bool KConfigBase::hasGroup(const QByteArray &group) const return hasGroupImpl(group); } -KConfigGroup KConfigBase::group( const QByteArray &b) +KConfigGroup KConfigBase::group(const QByteArray &b) { return groupImpl(b); } -KConfigGroup KConfigBase::group( const QString &str) +KConfigGroup KConfigBase::group(const QString &str) { return groupImpl(str.toUtf8()); } -KConfigGroup KConfigBase::group( const char *str) +KConfigGroup KConfigBase::group(const char *str) { return groupImpl(QByteArray(str)); } -const KConfigGroup KConfigBase::group( const QByteArray &b ) const +const KConfigGroup KConfigBase::group(const QByteArray &b) const { return groupImpl(b); } -const KConfigGroup KConfigBase::group( const QString &s ) const +const KConfigGroup KConfigBase::group(const QString &s) const { return groupImpl(s.toUtf8()); } -const KConfigGroup KConfigBase::group( const char *s ) const +const KConfigGroup KConfigBase::group(const char *s) const { return groupImpl(QByteArray(s)); } @@ -86,17 +86,16 @@ void KConfigBase::deleteGroup(const char *group, WriteConfigFlags flags) deleteGroupImpl(QByteArray(group), flags); } -bool KConfigBase::isGroupImmutable(const QByteArray& aGroup) const +bool KConfigBase::isGroupImmutable(const QByteArray &aGroup) const { return isGroupImmutableImpl(aGroup); } -bool KConfigBase::isGroupImmutable(const QString& aGroup) const +bool KConfigBase::isGroupImmutable(const QString &aGroup) const { return isGroupImmutableImpl(aGroup.toUtf8()); } - bool KConfigBase::isGroupImmutable(const char *aGroup) const { return isGroupImmutableImpl(QByteArray(aGroup)); @@ -108,5 +107,5 @@ KConfigBase::~KConfigBase() KConfigBase::KConfigBase() {} -void KConfigBase::virtual_hook(int , void *) +void KConfigBase::virtual_hook(int, void *) {} |