summaryrefslogtreecommitdiff
path: root/gui/worker.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-04-25 21:23:02 -0400
committerbd <bdunahu@operationnull.com>2025-04-25 21:23:02 -0400
commit55a5a757dea26efad1e57fa7805c62ed19206ad3 (patch)
tree7ee513f8450389afbe4c1eb74e526393c27e95a2 /gui/worker.cc
parentf3e6d5ed8acdeb3f5eccffb5aeeab2e7b040908c (diff)
Remove onWorkerFinished
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();
}