From kde-commits Tue Sep 16 19:37:40 2003 From: Jakob Lund Date: Tue, 16 Sep 2003 19:37:40 +0000 To: kde-commits Subject: kdevelop/lib/util X-MARC-Message: https://marc.info/?l=kde-commits&m=106374182708792 CVS commit by jsgaarde: with cleanPath M +2 -1 pathutil.cpp 1.3 --- kdevelop/lib/util/pathutil.cpp #1.2:1.3 @@ -12,4 +12,5 @@ #include #include +#include #include "pathutil.h" //#include @@ -42,5 +43,5 @@ QString getRelativePath(const QString& b if (destdirs.count()) relpath += "/"+destdirs.join("/"); - return relpath; + return QDir::cleanDirPath(relpath); }