diff options
Diffstat (limited to 'Plugins/SqlFormatterSimple/sqlformattersimpleplugin.cpp')
| -rw-r--r-- | Plugins/SqlFormatterSimple/sqlformattersimpleplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugins/SqlFormatterSimple/sqlformattersimpleplugin.cpp b/Plugins/SqlFormatterSimple/sqlformattersimpleplugin.cpp index 80133b0..943f047 100644 --- a/Plugins/SqlFormatterSimple/sqlformattersimpleplugin.cpp +++ b/Plugins/SqlFormatterSimple/sqlformattersimpleplugin.cpp @@ -8,7 +8,7 @@ QString SqlFormatterSimplePlugin::format(SqliteQueryPtr query) {
TokenList tokens = query->tokens;
tokens.trimRight();
- foreach (TokenPtr token, tokens)
+ for (TokenPtr token : tokens)
{
if (token->type == Token::KEYWORD && cfg.SqlFormatterSimple.UpperCaseKeywords.get())
token->value = token->value.toUpper();
|
