debugger: fix path to declarative sources

Change-Id: I896a361ba01e675872eaedbfb73c6c2117ef14a4
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-03-28 14:35:12 +02:00
committed by hjk
parent aea3297932
commit 327b991cf0

View File

@@ -1318,7 +1318,7 @@ void DebuggerPluginPrivate::maybeEnrichParameters(DebuggerStartParameters *sp)
sp->debugSourceLocation.append(base + QLatin1String("qt5base/src/gui")); sp->debugSourceLocation.append(base + QLatin1String("qt5base/src/gui"));
sp->debugSourceLocation.append(base + QLatin1String("qt5base/src/network")); sp->debugSourceLocation.append(base + QLatin1String("qt5base/src/network"));
sp->debugSourceLocation.append(base + QLatin1String("qt5base/src/v8")); sp->debugSourceLocation.append(base + QLatin1String("qt5base/src/v8"));
sp->debugSourceLocation.append(base + QLatin1String("qt5declarative/src/declarative/qml")); sp->debugSourceLocation.append(base + QLatin1String("qt5declarative/src/qml"));
} }
} }