aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-02-02 11:45:19 +0100
committerUlf Hermann <ulf.hermann@qt.io>2021-02-02 14:17:14 +0100
commit065c3f5732fa98a83202b526fbec9839b765eb48 (patch)
tree7d74eab9ca55334916120b37ac8a8d265a641287 /src/quick
parent15f2d3f0d5b0acad5d5438f510069a620177c98c (diff)
Make the internals of QQuickAnimatorController private
No one should mess with those. All the pointers have complicated ownership semantics. We can just befriend the test instead of making it all public. Task-number: QTBUG-90401 Change-Id: I6c4adbab7046b40db7f4628780ef928445ea3eb2 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/quick')
-rw-r--r--src/quick/util/qquickanimatorcontroller_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/quick/util/qquickanimatorcontroller_p.h b/src/quick/util/qquickanimatorcontroller_p.h
index 9c345b8152..c567c8ad43 100644
--- a/src/quick/util/qquickanimatorcontroller_p.h
+++ b/src/quick/util/qquickanimatorcontroller_p.h
@@ -93,10 +93,11 @@ public:
QQuickWindow *window() const { return m_window; }
private:
+ friend class tst_Animators;
+
void start_helper(QAbstractAnimationJob *job);
void cancel_helper(QAbstractAnimationJob *job);
-public:
QSet<QQuickAnimatorJob * > m_runningAnimators;
QHash<QAbstractAnimationJob *, QSharedPointer<QAbstractAnimationJob> > m_animationRoots;
QSet<QSharedPointer<QAbstractAnimationJob> > m_rootsPendingStop;