diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-06-08 22:42:39 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-06-08 22:42:39 +0200 |
commit | 472045a73ecaa826c127bf6106f1e2b7cf82692c (patch) | |
tree | 3ab8ae3553e40a0536e812c58817161403a5a1cd | |
parent | ecc9c4863cc89366950518bb51a6264a0369c49d (diff) |
Remove debug output.
-rw-r--r-- | plugingui/progressbar.cc | 4 |
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; |