From: Aurindam Jana Date: Thu, 10 Nov 2011 14:54:21 +0000 (+0100) Subject: QV8Profiler: Rename the global static instance X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=f15b7a0ffb15bf34749bed750f98a23c84a89f7f;p=konrad%2Fqtdeclarative.git QV8Profiler: Rename the global static instance Change-Id: Iecd2856a36c7cf364f3d18288c2974a3bc29f91f Reviewed-by: Kai Koehne Reviewed-by: Christiaan Janssen --- diff --git a/src/declarative/debugger/qv8profilerservice.cpp b/src/declarative/debugger/qv8profilerservice.cpp index c3c65a5..c611366 100644 --- a/src/declarative/debugger/qv8profilerservice.cpp +++ b/src/declarative/debugger/qv8profilerservice.cpp @@ -48,7 +48,7 @@ QT_BEGIN_NAMESPACE -Q_GLOBAL_STATIC(QV8ProfilerService, v8ServiceInstance) +Q_GLOBAL_STATIC(QV8ProfilerService, v8ProfilerInstance) class ByteArrayOutputStream : public v8::OutputStream { @@ -115,7 +115,7 @@ QV8ProfilerService::~QV8ProfilerService() QV8ProfilerService *QV8ProfilerService::instance() { - return v8ServiceInstance(); + return v8ProfilerInstance(); } void QV8ProfilerService::addEngine(QDeclarativeEngine *engine)