From 8bed00ab34e31f2b9c70026d418d923913325798 Mon Sep 17 00:00:00 2001 From: Ahmad Samir Date: Mon, 22 Feb 2021 17:38:09 +0200 Subject: Run clang-format on all cpp/h files NO_CHANGELOG --- src/core/kconfigbackend.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/core/kconfigbackend.cpp') diff --git a/src/core/kconfigbackend.cpp b/src/core/kconfigbackend.cpp index 0f95a5f6..13455dbd 100644 --- a/src/core/kconfigbackend.cpp +++ b/src/core/kconfigbackend.cpp @@ -10,14 +10,14 @@ #include "kconfigbackend_p.h" #include -#include +#include #include #include #include -#include +#include -#include "kconfigini_p.h" #include "kconfigdata.h" +#include "kconfigini_p.h" typedef QExplicitlySharedDataPointer BackendPtr; @@ -38,7 +38,7 @@ void KConfigBackend::registerMappings(const KEntryMap & /*entryMap*/) BackendPtr KConfigBackend::create(const QString &file, const QString &sys) { - //qDebug() << "creating a backend for file" << file << "with system" << sys; + // qDebug() << "creating a backend for file" << file << "with system" << sys; KConfigBackend *backend = nullptr; #if 0 // TODO port to Qt5 plugin loading @@ -61,7 +61,7 @@ BackendPtr KConfigBackend::create(const QString &file, const QString &sys) Q_UNUSED(sys); #endif - //qDebug() << "default creation of the Ini backend"; + // qDebug() << "default creation of the Ini backend"; backend = new KConfigIniBackend; backend->setFilePath(file); return BackendPtr(backend); -- cgit v1.2.1