Add graphs showing journeys/durations over last year
[harbour-pedalo.git] / src / statsweekdayave.cpp
index c0bbd2b..7d4987c 100644 (file)
@@ -1,5 +1,3 @@
-#include <QDebug>
-
 #include "statsweekdayave.h"
 
 StatsWeekdayAve::StatsWeekdayAve(JourneyModel * journeys) :
@@ -15,7 +13,6 @@ void StatsWeekdayAve::update() {
     unsigned int count[7];
     int pos;
 
-    qDebug() << "Calculating values";
     barvalues.clear();
 
     for (pos = 0; pos < 7; pos++) {
@@ -45,8 +42,4 @@ void StatsWeekdayAve::update() {
     }
 
     step = maxval > 5.0 ? qRound(maxval / 5.0) : (maxval / 5.0);
-
-    qDebug() << "Calculated values";
 }
-
-