diff --git a/debuggers/common/miframestackmodel.cpp b/debuggers/common/miframestackmodel.cpp --- a/debuggers/common/miframestackmodel.cpp +++ b/debuggers/common/miframestackmodel.cpp @@ -120,7 +120,7 @@ f.nr = frame["level"].toInt(); f.name = getFunctionOrAddress(frame); QPair loc = getSource(frame); - f.file = QUrl::fromLocalFile(loc.first); + f.file = QUrl::fromLocalFile(loc.first).adjusted(QUrl::NormalizePathSegments); f.line = loc.second; frames << f; }