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