diff options
author | bd <bdunahu@operationnull.com> | 2025-04-25 21:23:02 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-25 21:23:02 -0400 |
commit | 55a5a757dea26efad1e57fa7805c62ed19206ad3 (patch) | |
tree | 7ee513f8450389afbe4c1eb74e526393c27e95a2 /gui/worker.cc | |
parent | f3e6d5ed8acdeb3f5eccffb5aeeab2e7b040908c (diff) |
Remove onWorkerFinished
Diffstat (limited to 'gui/worker.cc')
-rw-r--r-- | gui/worker.cc | 3 |
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(); } |