diff options
author | Ahmad Samir <a.samirh78@gmail.com> | 2021-02-22 19:25:40 +0200 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2021-02-22 21:28:00 +0200 |
commit | 48c132be8aa983165126b0641a083848dd5c6620 (patch) | |
tree | e86e514536a914c09c8e83c12d0ad46a369a86d2 /src/kconf_update/kconf_update.cpp | |
parent | 8bed00ab34e31f2b9c70026d418d923913325798 (diff) | |
download | kconfig-48c132be8aa983165126b0641a083848dd5c6620.tar.gz kconfig-48c132be8aa983165126b0641a083848dd5c6620.tar.bz2 |
Fix formatting in a couple of places after running clang-format
NO_CHANGELOG
Diffstat (limited to 'src/kconf_update/kconf_update.cpp')
-rw-r--r-- | src/kconf_update/kconf_update.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kconf_update/kconf_update.cpp b/src/kconf_update/kconf_update.cpp index defe0b80..a08ecaae 100644 --- a/src/kconf_update/kconf_update.cpp +++ b/src/kconf_update/kconf_update.cpp @@ -199,7 +199,9 @@ QStringList KonfUpdate::findUpdateFiles(bool dirtyOnly) KConfigGroup cg(m_config, fileName); const QDateTime ctime = QDateTime::fromSecsSinceEpoch(cg.readEntry("ctime", 0u)); const QDateTime mtime = QDateTime::fromSecsSinceEpoch(cg.readEntry("mtime", 0u)); - if (!dirtyOnly || (ctime.isValid() && ctime != info.birthTime()) || mtime != info.lastModified()) { + if (!dirtyOnly // + || (ctime.isValid() && ctime != info.birthTime()) // + || mtime != info.lastModified()) { result.append(file); } } |