From 4b8bffc1f845b07227a035872179965e221a3d79 Mon Sep 17 00:00:00 2001 From: Carlo Segato Date: Thu, 19 Aug 2010 22:55:15 +0000 Subject: [PATCH] use forwardslashes instead of QDir::separator() even on windows, otherwise we get a path with mixed slashes svn path=/trunk/KDE/kdelibs/; revision=1165684 --- packagestructure.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packagestructure.cpp b/packagestructure.cpp index 0d2a32356..f2e2de997 100644 --- a/packagestructure.cpp +++ b/packagestructure.cpp @@ -393,7 +393,7 @@ void PackageStructure::setPath(const QString &path) if (valid) { QFileInfo info(basePath); if (info.isDir()) { - basePath.append(QDir::separator()); + basePath.append("/"); } //kDebug() << "basePath is" << basePath; } else {