aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2012-02-17 15:56:14 +0100
committerQt by Nokia <qt-info@nokia.com>2012-02-21 11:04:58 +0100
commit784d867d2b79fcfdbf039456fcfe0692652fec52 (patch)
treea8e4dc77f832a05a36aebc9e984193bad265b605 /src
parentc7ec69b4a7c2aa6dbee723c027e3283bd34d50fc (diff)
v8profiler: Actually submit data
Fix regression introduced in 82dfecab3. Change-Id: Icd90c483b9b2fde8d4cf522f3a35368cd395b120 Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/declarative/debugger/qv8profilerservice.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/debugger/qv8profilerservice.cpp b/src/declarative/debugger/qv8profilerservice.cpp
index 4519fd6eeb..5ae2d01cc2 100644
--- a/src/declarative/debugger/qv8profilerservice.cpp
+++ b/src/declarative/debugger/qv8profilerservice.cpp
@@ -185,6 +185,8 @@ void QV8ProfilerService::startProfiling(const QString &title)
v8::HandleScope handle_scope;
v8::Handle<v8::String> v8title = v8::String::New(reinterpret_cast<const uint16_t*>(title.data()), title.size());
v8::CpuProfiler::StartProfiling(v8title);
+
+ d->m_ongoing.append(title);
}
void QV8ProfilerService::stopProfiling(const QString &title)