Profiler: Remove unused method
authorKai Koehne <kai.koehne@nokia.com>
Wed, 29 Feb 2012 12:28:51 +0000 (13:28 +0100)
committerQt by Nokia <qt-info@nokia.com>
Thu, 1 Mar 2012 12:26:10 +0000 (13:26 +0100)
Change-Id: I74ba20b495760034bc714d92bcf016feddf87c2c
Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
src/declarative/debugger/qdeclarativeprofilerservice.cpp
src/declarative/debugger/qdeclarativeprofilerservice_p.h

index 17ee3e5..074355f 100644 (file)
@@ -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);
index d29690b..d2f263c 100644 (file)
@@ -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);