summaryrefslogtreecommitdiffstats
path: root/src/input/backend/movingaverage_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/backend/movingaverage_p.h')
-rw-r--r--src/input/backend/movingaverage_p.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/input/backend/movingaverage_p.h b/src/input/backend/movingaverage_p.h
index 67b2ec559..f7a89907a 100644
--- a/src/input/backend/movingaverage_p.h
+++ b/src/input/backend/movingaverage_p.h
@@ -52,7 +52,8 @@
//
#include <QtCore/qglobal.h>
-#include <QtCore/qlist.h>
+
+#include <vector>
QT_BEGIN_NAMESPACE
@@ -73,7 +74,7 @@ private:
unsigned int m_sampleCount;
unsigned int m_currentSample;
float m_total;
- QVector<float> m_samples;
+ std::vector<float> m_samples;
};
} // Input