aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/populateworker.cpp')
-rw-r--r--SQLiteStudio3/coreSQLiteStudio/populateworker.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp b/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp
index e1c207a..08acd19 100644
--- a/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp
+++ b/SQLiteStudio3/coreSQLiteStudio/populateworker.cpp
@@ -25,14 +25,13 @@ void PopulateWorker::run()
return;
}
- Dialect dialect = db->getDialect();
- QString wrappedTable = wrapObjIfNeeded(table, dialect);
+ QString wrappedTable = wrapObjIfNeeded(table);
QStringList cols;
QStringList argList;
for (const QString& column : columns)
{
- cols << wrapObjIfNeeded(column, dialect);
+ cols << wrapObjIfNeeded(column);
argList << "?";
}