summaryrefslogtreecommitdiff
path: root/gui/worker.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gui/worker.cc')
-rw-r--r--gui/worker.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/gui/worker.cc b/gui/worker.cc
index 22f8738..a0e21f6 100644
--- a/gui/worker.cc
+++ b/gui/worker.cc
@@ -23,8 +23,6 @@ Worker::Worker(QObject *parent) : QObject(parent) {}
Worker::~Worker()
{
emit finished();
- qDebug() << "Worker destructor called in thread:"
- << QThread::currentThread();
delete this->ct;
}
@@ -74,7 +72,6 @@ void Worker::configure(
void Worker::runSteps(int steps)
{
- qDebug() << "Running for " << steps << "steps";
this->ct->run_for(steps);
this->update();
}