diff options
author | Laurent Montel <montel@kde.org> | 2020-01-03 07:28:43 +0100 |
---|---|---|
committer | Laurent Montel <montel@kde.org> | 2020-01-03 07:28:43 +0100 |
commit | f9d50c202239ce02fcc991ea82856d2263760b16 (patch) | |
tree | 752e8f8ac95fd7509f46b77d2d2a22b23738c809 /src/core/kdesktopfile.cpp | |
parent | d8abb64b32d80dc9398a2ea0c8dd4164b67d7237 (diff) | |
download | kconfig-f9d50c202239ce02fcc991ea82856d2263760b16.tar.gz kconfig-f9d50c202239ce02fcc991ea82856d2263760b16.tar.bz2 |
Remove endl at the end of qdebug
Diffstat (limited to 'src/core/kdesktopfile.cpp')
-rw-r--r-- | src/core/kdesktopfile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/kdesktopfile.cpp b/src/core/kdesktopfile.cpp index 18ef8523..2292a6c7 100644 --- a/src/core/kdesktopfile.cpp +++ b/src/core/kdesktopfile.cpp @@ -159,7 +159,7 @@ bool KDesktopFile::isAuthorizedDesktopFile(const QString &path) // Forbid desktop files outside of standard locations if kiosk is set so if (!KAuthorized::authorize(QStringLiteral("run_desktop_files"))) { - qCWarning(KCONFIG_CORE_LOG) << "Access to '" << path << "' denied because of 'run_desktop_files' restriction." << endl; + qCWarning(KCONFIG_CORE_LOG) << "Access to '" << path << "' denied because of 'run_desktop_files' restriction."; return false; } @@ -170,7 +170,7 @@ bool KDesktopFile::isAuthorizedDesktopFile(const QString &path) return true; } - qCWarning(KCONFIG_CORE_LOG) << "Access to '" << path << "' denied, not owned by root, executable flag not set." << endl; + qCWarning(KCONFIG_CORE_LOG) << "Access to '" << path << "' denied, not owned by root, executable flag not set."; return false; } |