summaryrefslogtreecommitdiff
path: root/plugingui
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2016-06-08 22:42:39 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2016-06-08 22:42:39 +0200
commit472045a73ecaa826c127bf6106f1e2b7cf82692c (patch)
tree3ab8ae3553e40a0536e812c58817161403a5a1cd /plugingui
parentecc9c4863cc89366950518bb51a6264a0369c49d (diff)
Remove debug output.
Diffstat (limited to 'plugingui')
-rw-r--r--plugingui/progressbar.cc4
1 files changed, 0 insertions, 4 deletions
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 <iostream>
-
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;