aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/sqlitestudiocli/commands/clicommandhistory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/sqlitestudiocli/commands/clicommandhistory.cpp')
-rw-r--r--SQLiteStudio3/sqlitestudiocli/commands/clicommandhistory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/SQLiteStudio3/sqlitestudiocli/commands/clicommandhistory.cpp b/SQLiteStudio3/sqlitestudiocli/commands/clicommandhistory.cpp
index 7d08846..c7b16f8 100644
--- a/SQLiteStudio3/sqlitestudiocli/commands/clicommandhistory.cpp
+++ b/SQLiteStudio3/sqlitestudiocli/commands/clicommandhistory.cpp
@@ -26,7 +26,7 @@ void CliCommandHistory::execute()
int cols = getCliColumns();
QString hline = pad("", cols, '-');
- foreach (const QString& line, cli->getHistory())
+ for (const QString& line : cli->getHistory())
{
print(hline);
println(line);