aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/sqlitestudiocli/commands/clicommandtables.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/sqlitestudiocli/commands/clicommandtables.cpp')
-rw-r--r--SQLiteStudio3/sqlitestudiocli/commands/clicommandtables.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/SQLiteStudio3/sqlitestudiocli/commands/clicommandtables.cpp b/SQLiteStudio3/sqlitestudiocli/commands/clicommandtables.cpp
index f5a9708..8a8f5dc 100644
--- a/SQLiteStudio3/sqlitestudiocli/commands/clicommandtables.cpp
+++ b/SQLiteStudio3/sqlitestudiocli/commands/clicommandtables.cpp
@@ -47,9 +47,9 @@ void CliCommandTables::execute()
println(pad(tr("Database"), width, ' ') + " " + tr("Table"));
println(pad("", width, '-') + "-------------------");
- foreach (const QString& dbName, dbList)
+ for (const QString& dbName : dbList)
{
- foreach (const QString& table, resolver.getTables(dbName))
+ for (const QString& table : resolver.getTables(dbName))
println(pad(dbName, width, ' ') + " " + table);
}