From f1b9f56c6975b1e641e342c5190c6ad322541bfe Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@theqtcompany.com> Date: Tue, 18 Aug 2015 11:54:41 +0200 Subject: [PATCH] CppEditor: Fix whitespace Change-Id: I5b1f9268e2bc37344fba2ffec6098ae787cb327f Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> --- src/plugins/cppeditor/cppquickfixes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/cppeditor/cppquickfixes.cpp b/src/plugins/cppeditor/cppquickfixes.cpp index 28d711cf8e1..ff1c151afbd 100644 --- a/src/plugins/cppeditor/cppquickfixes.cpp +++ b/src/plugins/cppeditor/cppquickfixes.cpp @@ -2215,7 +2215,7 @@ public: if (ExpressionAST *csExpression = cs->expression) { if (ExpressionAST *expression = csExpression->asIdExpression()) { QList<LookupItem> candidates = typeOfExpression(expression, document, scope); - if (!candidates .isEmpty() && candidates.first().declaration()) { + if (!candidates.isEmpty() && candidates.first().declaration()) { Symbol *decl = candidates.first().declaration(); values << prettyPrint.prettyName(LookupContext::fullyQualifiedName(decl)); } -- GitLab