diff options
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/services/populatemanager.cpp')
| -rw-r--r-- | SQLiteStudio3/coreSQLiteStudio/services/populatemanager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/services/populatemanager.cpp b/SQLiteStudio3/coreSQLiteStudio/services/populatemanager.cpp index 237667d..02ba549 100644 --- a/SQLiteStudio3/coreSQLiteStudio/services/populatemanager.cpp +++ b/SQLiteStudio3/coreSQLiteStudio/services/populatemanager.cpp @@ -55,6 +55,7 @@ void PopulateManager::populate(Db* db, const QString& table, const QHash<QString PopulateWorker* worker = new PopulateWorker(db, table, columns, engineList, rows); connect(worker, SIGNAL(finished(bool)), this, SLOT(finalizePopulating(bool))); + connect(worker, SIGNAL(finishedStep(int)), this, SIGNAL(finishedStep(int))); connect(this, SIGNAL(orderWorkerToInterrupt()), worker, SLOT(interrupt())); QThreadPool::globalInstance()->start(worker); |
