summaryrefslogtreecommitdiffstats
path: root/src/animation
diff options
context:
space:
mode:
authorMike Krus <mike.krus@kdab.com>2020-09-03 11:01:47 +0100
committerMike Krus <mike.krus@kdab.com>2020-09-07 14:44:52 +0100
commit1bf41b83e3ee388ef43504a09b7ae5e700606e17 (patch)
tree78090ad217c20a31d03868d565ece0f4c6d7ea0c /src/animation
parentbefd2091a6a2f667eddabd35b8c6d7c0783b72ec (diff)
Fix build with latest QtBase and QtDeclarative
Task-number: QTBUG-86410 Change-Id: I26427d65de72c86f952b076259979f90eaef87f4 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/animation')
-rw-r--r--src/animation/backend/functionrangefinder_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/animation/backend/functionrangefinder_p.h b/src/animation/backend/functionrangefinder_p.h
index 5df05bea4..004bea4b8 100644
--- a/src/animation/backend/functionrangefinder_p.h
+++ b/src/animation/backend/functionrangefinder_p.h
@@ -81,7 +81,7 @@ private:
int locate(float x) const;
int hunt(float x) const;
- const QList<float> &m_x;
+ QList<float> m_x;
mutable int m_previousLowerBound;
mutable bool m_correlated;
int m_rangeSize;