aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2018-03-27 16:10:09 +0200
committerUlf Hermann <ulf.hermann@qt.io>2018-03-27 14:56:21 +0000
commit1acd77ad525f40888333fe3a6e53789cdd5b5afa (patch)
treeac4c792afbf635b7b356c40d9143be5b0a5ef50c /src
parentfa1a117ea6e2a3ea0931d441d1dc8917e2145f73 (diff)
Qml Profiler: Store and send URL of compile events
Task-number: QTBUG-67354 Change-Id: I7251095570d5ba8d0a62d854cfcbc339b2455747 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/qml/debugger/qqmlprofiler_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/debugger/qqmlprofiler_p.h b/src/qml/debugger/qqmlprofiler_p.h
index deb4d107d6..287c53ea05 100644
--- a/src/qml/debugger/qqmlprofiler_p.h
+++ b/src/qml/debugger/qqmlprofiler_p.h
@@ -190,7 +190,7 @@ public:
}
RefLocation(QQmlDataBlob *ref)
- : Location(QQmlSourceLocation()), locationType(Compiling), sent(false)
+ : Location(QQmlSourceLocation(), ref->url()), locationType(Compiling), sent(false)
{
blob = ref;
blob->addref();