QmlProfiler: Drop QmlProfilerDataModel::changed() signal

Nobody is listening to it anymore.

Change-Id: I7a437334e3fc6f091c8515574007b400eb312a72
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
Ulf Hermann
2016-04-28 16:24:03 +02:00
parent 5ba6f04d4b
commit 911c8842b2
2 changed files with 0 additions and 5 deletions

View File

@@ -157,7 +157,6 @@ void QmlProfilerDataModel::clear()
d->eventTypes.clear(); d->eventTypes.clear();
d->eventTypeIds.clear(); d->eventTypeIds.clear();
d->detailsRewriter->clearRequests(); d->detailsRewriter->clearRequests();
emit changed();
} }
bool QmlProfilerDataModel::isEmpty() const bool QmlProfilerDataModel::isEmpty() const
@@ -224,8 +223,6 @@ void QmlProfilerDataModel::processData()
d->detailsRewriter->requestDetailsForLocation(i, event->location); d->detailsRewriter->requestDetailsForLocation(i, event->location);
} }
// Allow changed() event only after documents have been reloaded to avoid
// unnecessary updates of child models.
emit requestReload(); emit requestReload();
} }
@@ -276,7 +273,6 @@ void QmlProfilerDataModel::detailsChanged(int requestId, const QString &newStrin
void QmlProfilerDataModel::detailsDone() void QmlProfilerDataModel::detailsDone()
{ {
Q_D(QmlProfilerDataModel); Q_D(QmlProfilerDataModel);
emit changed();
d->modelManager->processingDone(); d->modelManager->processingDone();
} }

View File

@@ -60,7 +60,6 @@ public:
qint64 lastTimeMark() const; qint64 lastTimeMark() const;
signals: signals:
void changed();
void requestReload(); void requestReload();
protected slots: protected slots: