From 8af34203ec302c5ab630d2fba700a6f60d9c8096 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Wed, 29 Feb 2012 13:28:51 +0100 Subject: [PATCH] Profiler: Remove unused method Change-Id: I74ba20b495760034bc714d92bcf016feddf87c2c Reviewed-by: Christiaan Janssen --- src/declarative/debugger/qdeclarativeprofilerservice.cpp | 5 ----- src/declarative/debugger/qdeclarativeprofilerservice_p.h | 1 - 2 files changed, 6 deletions(-) diff --git a/src/declarative/debugger/qdeclarativeprofilerservice.cpp b/src/declarative/debugger/qdeclarativeprofilerservice.cpp index 17ee3e5..074355f 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 d29690b..d2f263c 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); -- 2.7.4