diff options
Diffstat (limited to 'gui/ice40/worker.cc')
-rw-r--r-- | gui/ice40/worker.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gui/ice40/worker.cc b/gui/ice40/worker.cc index c49b8769..ce513a05 100644 --- a/gui/ice40/worker.cc +++ b/gui/ice40/worker.cc @@ -56,10 +56,7 @@ Worker::Worker(TaskManager *parent) : ctx(nullptr) }; } -void Worker::newContext(Context *ctx_) -{ - ctx = ctx_; -} +void Worker::newContext(Context *ctx_) { ctx = ctx_; } void Worker::loadfile(const std::string &filename) { @@ -156,7 +153,6 @@ TaskManager::TaskManager() : toTerminate(false), toPause(false) connect(this, &TaskManager::place, worker, &Worker::place); connect(this, &TaskManager::route, worker, &Worker::route); - connect(this, &TaskManager::contextChanged, worker, &Worker::newContext); connect(worker, &Worker::log, this, &TaskManager::info); |