From 327b991cf069044da3fd517e03076b9c43be02f8 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 28 Mar 2012 14:35:12 +0200 Subject: [PATCH] debugger: fix path to declarative sources Change-Id: I896a361ba01e675872eaedbfb73c6c2117ef14a4 Reviewed-by: hjk --- src/plugins/debugger/debuggerplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 6d65e5341a5..9d7c4d88073 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1318,7 +1318,7 @@ void DebuggerPluginPrivate::maybeEnrichParameters(DebuggerStartParameters *sp) sp->debugSourceLocation.append(base + QLatin1String("qt5base/src/gui")); sp->debugSourceLocation.append(base + QLatin1String("qt5base/src/network")); 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")); } }