kde-frameworks/kio: Fix build with Qt-5.7.1
authorAndreas Sturmlechner <asturm@gentoo.org>
Sun, 3 Dec 2017 12:24:34 +0000 (13:24 +0100)
committerAndreas Sturmlechner <asturm@gentoo.org>
Sun, 3 Dec 2017 12:34:25 +0000 (13:34 +0100)
Package-Manager: Portage-2.3.16, Repoman-2.3.6

kde-frameworks/kio/files/kio-5.40.0-mkpath-qt-5.9.3.patch

index d9cf7402741d0d384655d23d4615614b8343b367..503a8c7737809d9af04cd32f3e382bd86080b2fe 100644 (file)
@@ -21,6 +21,8 @@ Reviewers: #frameworks, dfaure
 Tags: #frameworks
 
 Differential Revision: https://phabricator.kde.org/D8836
+
+* asturm: Fix build with Qt-5.7.1
 ---
  src/core/mkpathjob.cpp | 17 ++++++++++++++---
  1 file changed, 14 insertions(+), 3 deletions(-)
@@ -37,7 +39,7 @@ index bff46ca..a177805 100644
 -                m_url.setPath(m_url.path() + '/' + m_pathComponents.at(i));
 +            const QString pathComponent = m_pathComponents.at(i);
 +            if (pathComponent == basePathComponents.at(i)) {
-+                if (m_url.path() == QLatin1Char('/')) {
++                if (m_url.path() == QLatin1String("/")) {
 +                    m_url.setPath(m_url.path() + pathComponent);
 +                } else {
 +                    m_url.setPath(m_url.path() + '/' + pathComponent);
@@ -52,7 +54,7 @@ index bff46ca..a177805 100644
 -                QString testDir = m_url.toLocalFile() + '/' + m_pathComponents.at(i);
 +                const QString localFile = m_url.toLocalFile();
 +                QString testDir;
-+                if (localFile == QLatin1Char('/')) {
++                if (localFile == QLatin1String("/")) {
 +                    testDir = localFile + m_pathComponents.at(i);
 +                } else {
 +                    testDir = localFile + '/' + m_pathComponents.at(i);