aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2012-02-29 13:28:51 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-01 13:26:10 +0100
commit8af34203ec302c5ab630d2fba700a6f60d9c8096 (patch)
treeec325200bf7ca24ce1971049d9a717a1e2deedb0 /src
parent6c5955e58f885cf5b4597b8fb0a059d204e2a5e1 (diff)
Profiler: Remove unused method
Change-Id: I74ba20b495760034bc714d92bcf016feddf87c2c Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/declarative/debugger/qdeclarativeprofilerservice.cpp5
-rw-r--r--src/declarative/debugger/qdeclarativeprofilerservice_p.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/src/declarative/debugger/qdeclarativeprofilerservice.cpp b/src/declarative/debugger/qdeclarativeprofilerservice.cpp
index 17ee3e5836..074355fe97 100644
--- a/src/declarative/debugger/qdeclarativeprofilerservice.cpp
+++ b/src/declarative/debugger/qdeclarativeprofilerservice.cpp
@@ -144,11 +144,6 @@ void QDeclarativeProfilerService::rangeData(RangeType t, const QString &data)
profilerInstance()->rangeDataImpl(t, data);
}
-void QDeclarativeProfilerService::rangeData(RangeType t, const QUrl &data)
-{
- profilerInstance()->rangeDataImpl(t, data);
-}
-
void QDeclarativeProfilerService::rangeLocation(RangeType t, const QString &fileName, int line, int column)
{
profilerInstance()->rangeLocationImpl(t, fileName, line, column);
diff --git a/src/declarative/debugger/qdeclarativeprofilerservice_p.h b/src/declarative/debugger/qdeclarativeprofilerservice_p.h
index d29690b6d6..d2f263cca6 100644
--- a/src/declarative/debugger/qdeclarativeprofilerservice_p.h
+++ b/src/declarative/debugger/qdeclarativeprofilerservice_p.h
@@ -134,7 +134,6 @@ public:
static void addEvent(EventType);
static void startRange(RangeType);
static void rangeData(RangeType, const QString &);
- static void rangeData(RangeType, const QUrl &);
static void rangeLocation(RangeType, const QString &, int, int);
static void rangeLocation(RangeType, const QUrl &, int, int);
static void endRange(RangeType);