aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@theqtcompany.com>2015-08-18 11:54:41 +0200
committerRobert Loehning <robert.loehning@theqtcompany.com>2015-08-18 10:02:51 +0000
commitf1b9f56c6975b1e641e342c5190c6ad322541bfe (patch)
tree5d7dd763c4373117f30203b2d719501162217211
parent9d6a291d5c8af3cfbac2447d41b3330e60c8b7b4 (diff)
CppEditor: Fix whitespacev3.5.0
Change-Id: I5b1f9268e2bc37344fba2ffec6098ae787cb327f Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-rw-r--r--src/plugins/cppeditor/cppquickfixes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cppquickfixes.cpp b/src/plugins/cppeditor/cppquickfixes.cpp
index 28d711cf8e..ff1c151afb 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));
}