Skip to content
Snippets Groups Projects
Commit 1e7d6a01 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

ignore blocks.

parent 13892870
No related branches found
No related tags found
No related merge requests found
...@@ -436,6 +436,9 @@ void CPPEditor::updateMethodBoxIndex() ...@@ -436,6 +436,9 @@ void CPPEditor::updateMethodBoxIndex()
else if (symbol->isGenerated()) else if (symbol->isGenerated())
continue; continue;
else if (symbol->isBlock())
continue;
if (symbol) { if (symbol) {
int column = symbol->column(); int column = symbol->column();
...@@ -656,8 +659,6 @@ void CPPEditor::jumpToDefinition() ...@@ -656,8 +659,6 @@ void CPPEditor::jumpToDefinition()
return; // done return; // done
} }
} }
qDebug() << "No results for expression:" << expression;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment