From 1136b969b2d1be03a5565aa1d67036c3742dfec4 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Tue, 12 May 2015 15:27:20 +0200 Subject: [PATCH] Folder: fix compilation after merge --- src/gui/folder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/folder.cpp b/src/gui/folder.cpp index a13118a13..8a2b3c577 100644 --- a/src/gui/folder.cpp +++ b/src/gui/folder.cpp @@ -184,7 +184,7 @@ QString Folder::path() const QString Folder::cleanPath() { - QString cleanedPath = QDir::cleanPath(_path); + QString cleanedPath = QDir::cleanPath(_definition.localPath); if(cleanedPath.length() == 3 && cleanedPath.endsWith(":/")) cleanedPath.remove(2,1);