QtSupport: Fix indentation of condition

Change-Id: I64563971749ab47d0f144bd90fbd22558783fc55
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Orgad Shaneh
2014-05-05 17:16:54 +03:00
committed by Orgad Shaneh
parent becf48fd82
commit 714fc53713

View File

@@ -953,7 +953,8 @@ struct SearchStringLexer
if (yychar == quote) { if (yychar == quote) {
yyinp(); yyinp();
break; break;
} if (yychar == QLatin1Char('\\')) { }
if (yychar == QLatin1Char('\\')) {
yyinp(); yyinp();
switch (yychar.unicode()) { switch (yychar.unicode()) {
case '"': yytext += QLatin1Char('"'); yyinp(); break; case '"': yytext += QLatin1Char('"'); yyinp(); break;