From af8ad534c2b074df2c9d3d7953a0f4d9f2b40e44 Mon Sep 17 00:00:00 2001 From: Bryant Mairs Date: Thu, 26 Jun 2014 19:39:25 -0700 Subject: [PATCH] Remove use of Qwt5.x types as they're now deprecated. --- src/ui/linechart/LinechartPlot.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/ui/linechart/LinechartPlot.h b/src/ui/linechart/LinechartPlot.h index be5c29bf9..f47363dce 100644 --- a/src/ui/linechart/LinechartPlot.h +++ b/src/ui/linechart/LinechartPlot.h @@ -45,7 +45,6 @@ This file is part of the PIXHAWK project #include #include #include -#include #include #include "ChartPlot.h" #include "MG.h" @@ -134,14 +133,14 @@ protected: private: quint64 count; - QwtArray ms; - QwtArray value; + QVector ms; + QVector value; double mean; double median; double variance; unsigned int averageWindow; - QwtArray outputMs; - QwtArray outputValue; + QVector outputMs; + QVector outputValue; }; -- 2.22.0