Add graphs showing journeys/durations over last year
[harbour-pedalo.git] / src / statshourcongestion.cpp
index a98230e..4debac7 100644 (file)
@@ -1,5 +1,3 @@
-#include <QDebug>
-
 #include "statshourcongestion.h"
 
 #define LOWESTHOUR (7)
@@ -22,8 +20,7 @@ void StatsHourCongestion::update() {
     unsigned int count[24];
     int pos;
 
-    qDebug() << "Calculating values";
-    values.clear();
+    barvalues.clear();
 
     for (pos = 0; pos < 24; pos++) {
         passed[pos] = 0.0;
@@ -58,10 +55,8 @@ void StatsHourCongestion::update() {
         if (result > maxval) {
             maxval = result;
         }
-        values << result;
+        barvalues << result;
     }
 
     step = (maxval > 5.0) ? qRound(maxval / 5.0) : (maxval / 5.0);
-
-    qDebug() << "Calculated values";
 }