From 472045a73ecaa826c127bf6106f1e2b7cf82692c Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 8 Jun 2016 22:42:39 +0200 Subject: Remove debug output. --- plugingui/progressbar.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'plugingui') diff --git a/plugingui/progressbar.cc b/plugingui/progressbar.cc index a897d76..25e735f 100644 --- a/plugingui/progressbar.cc +++ b/plugingui/progressbar.cc @@ -26,8 +26,6 @@ */ #include "progressbar.h" -#include - namespace GUI { @@ -51,7 +49,6 @@ void ProgressBar::setState(ProgressBarState state) void ProgressBar::setTotal(std::size_t total) { - std::cout << "total: " << total << std::endl; if(this->total != total) { this->total = total; @@ -61,7 +58,6 @@ void ProgressBar::setTotal(std::size_t total) void ProgressBar::setValue(std::size_t value) { - std::cout << "value: " << value << std::endl; if(this->value != value) { this->value = value; -- cgit v1.2.3