Skip to content

Commit 8d0a67e

Browse files
committed
unwanted qInfos removed
1 parent 49493de commit 8d0a67e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

chart.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
//
44

55
#include "chart.h"
6-
#include <QDebug>
7-
#include <iostream>
86

97
using namespace std;
108

@@ -45,9 +43,6 @@ void Chart::startUpdating(const QList<QLineSeries *> &seriesList, const QVector<
4543

4644
void Chart::updateAllSeries() {
4745

48-
qInfo() << "updates called";
49-
qInfo() << tempData.length();
50-
5146
removeZeroRows(*matrix);
5247
RowVectorXd meanData = matrix->colwise().mean().normalized();
5348

@@ -59,8 +54,6 @@ void Chart::updateAllSeries() {
5954
m_data.append(data);
6055
}
6156

62-
qInfo() << m_data.size() << c_windowWidth << pointCounter/2;
63-
6457
for (auto &i : c_seriesList) {
6558
i->replace(m_data);
6659
}

0 commit comments

Comments
 (0)