summaryrefslogtreecommitdiffstats
path: root/src/logic
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2016-02-26 13:01:46 +0000
committerSean Harmer <sean.harmer@kdab.com>2016-03-17 19:19:03 +0000
commit51119eb2d7711a9ac05d2b412bb99b12eef64974 (patch)
tree4ffbfea9293096bdff996ecee67a2b4d07688ef0 /src/logic
parent77b27d26a73dd31f6dca2e0012021943f573f776 (diff)
Remove QAbstractAspect::onCleanup()
This was actually called both when unsetting a root entity and during final shutdown. Remove it and move work it was doing to the overrides of onUnregistered() for now. Will need another look when we finish this refactoring to also include backend node destruction. Task-number: QTBUG-51421 Change-Id: I2f96ede4006fea3a4766d15cf6e162452dd58321 Reviewed-by: Kevin Ottens <kevin.ottens@kdab.com>
Diffstat (limited to 'src/logic')
-rw-r--r--src/logic/qlogicaspect.cpp4
-rw-r--r--src/logic/qlogicaspect.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/src/logic/qlogicaspect.cpp b/src/logic/qlogicaspect.cpp
index 8a0ba47b6..6697b7048 100644
--- a/src/logic/qlogicaspect.cpp
+++ b/src/logic/qlogicaspect.cpp
@@ -108,10 +108,6 @@ void QLogicAspect::onRegistered()
{
}
-void QLogicAspect::onCleanup()
-{
-}
-
void QLogicAspect::onEngineStartup()
{
Q_D(QLogicAspect);
diff --git a/src/logic/qlogicaspect.h b/src/logic/qlogicaspect.h
index 1e2f05169..897223414 100644
--- a/src/logic/qlogicaspect.h
+++ b/src/logic/qlogicaspect.h
@@ -64,7 +64,6 @@ private:
void onRegistered() Q_DECL_OVERRIDE;
void onEngineStartup() Q_DECL_OVERRIDE;
void onEngineShutdown() Q_DECL_OVERRIDE;
- void onCleanup() Q_DECL_OVERRIDE;
Q_DECLARE_PRIVATE(QLogicAspect)
QLogicAspect(QLogicAspectPrivate &dd, QObject *parent);