summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2015-12-15 13:37:25 +0100
committerKevin Ottens <kevin.ottens@kdab.com>2015-12-17 14:06:19 +0000
commit2b98e760c3bb8cac4c39d1f54a33be0c4753b56a (patch)
treee5f4e5bb84f477b7ff54134dbcac39c372566d97 /tests
parent1fcd7e406ccb9566fcf1bd3f2e07b1b53a0c1b0e (diff)
Make QSceneObserverInterface private
Change-Id: I98454ea6ed5bd5bbfed550317fedbf8ee47a1f8f Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/core/qaspectengine/tst_qaspectengine.cpp2
-rw-r--r--tests/auto/core/qaspectfactory/tst_qaspectfactory.cpp2
-rw-r--r--tests/auto/core/qchangearbiter/tst_qchangearbiter.cpp2
3 files changed, 1 insertions, 5 deletions
diff --git a/tests/auto/core/qaspectengine/tst_qaspectengine.cpp b/tests/auto/core/qaspectengine/tst_qaspectengine.cpp
index f6aa89550..299c08f70 100644
--- a/tests/auto/core/qaspectengine/tst_qaspectengine.cpp
+++ b/tests/auto/core/qaspectengine/tst_qaspectengine.cpp
@@ -56,8 +56,6 @@ private: \
void onStartup() Q_DECL_OVERRIDE {} \
void onShutdown() Q_DECL_OVERRIDE {} \
void onCleanup() Q_DECL_OVERRIDE {} \
- void sceneNodeAdded(QSceneChangePtr &) Q_DECL_OVERRIDE {} \
- void sceneNodeRemoved(QSceneChangePtr &) Q_DECL_OVERRIDE {} \
\
QVector<QAspectJobPtr> jobsToExecute(qint64) Q_DECL_OVERRIDE \
{ \
diff --git a/tests/auto/core/qaspectfactory/tst_qaspectfactory.cpp b/tests/auto/core/qaspectfactory/tst_qaspectfactory.cpp
index 1fcae882d..c287bf0e8 100644
--- a/tests/auto/core/qaspectfactory/tst_qaspectfactory.cpp
+++ b/tests/auto/core/qaspectfactory/tst_qaspectfactory.cpp
@@ -54,8 +54,6 @@ private: \
void onStartup() Q_DECL_OVERRIDE {} \
void onShutdown() Q_DECL_OVERRIDE {} \
void onCleanup() Q_DECL_OVERRIDE {} \
- void sceneNodeAdded(QSceneChangePtr &) Q_DECL_OVERRIDE {} \
- void sceneNodeRemoved(QSceneChangePtr &) Q_DECL_OVERRIDE {} \
\
QVector<QAspectJobPtr> jobsToExecute(qint64) Q_DECL_OVERRIDE \
{ \
diff --git a/tests/auto/core/qchangearbiter/tst_qchangearbiter.cpp b/tests/auto/core/qchangearbiter/tst_qchangearbiter.cpp
index b3ea9f251..551290c69 100644
--- a/tests/auto/core/qchangearbiter/tst_qchangearbiter.cpp
+++ b/tests/auto/core/qchangearbiter/tst_qchangearbiter.cpp
@@ -45,7 +45,7 @@
#include <Qt3DCore/private/qscene_p.h>
#include <Qt3DCore/qnode.h>
#include <Qt3DCore/qbackendnode.h>
-#include <Qt3DCore/qsceneobserverinterface.h>
+#include <Qt3DCore/private/qsceneobserverinterface_p.h>
#include <Qt3DCore/private/qnode_p.h>
#include <Qt3DCore/private/qbackendnode_p.h>
#include <QThread>