From 714fc537137400f15ad2929cc17de09c1ab682c5 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Mon, 5 May 2014 17:16:54 +0300 Subject: [PATCH] QtSupport: Fix indentation of condition Change-Id: I64563971749ab47d0f144bd90fbd22558783fc55 Reviewed-by: Daniel Teske --- src/plugins/qtsupport/exampleslistmodel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/qtsupport/exampleslistmodel.cpp b/src/plugins/qtsupport/exampleslistmodel.cpp index 1c0531e24cb..20e978ca6af 100644 --- a/src/plugins/qtsupport/exampleslistmodel.cpp +++ b/src/plugins/qtsupport/exampleslistmodel.cpp @@ -953,7 +953,8 @@ struct SearchStringLexer if (yychar == quote) { yyinp(); break; - } if (yychar == QLatin1Char('\\')) { + } + if (yychar == QLatin1Char('\\')) { yyinp(); switch (yychar.unicode()) { case '"': yytext += QLatin1Char('"'); yyinp(); break;