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); }