forked from qt-creator/qt-creator
CppTools: Ignore generated symbols in SearchSymbols
...e.g. qt_metacall() etc from the Q_OBJECT macro. This affects the results of the cpp locator and find filters. Change-Id: I2f9ff1210f3705baddadd486d700ee8be9a44a20 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
This commit is contained in:
@@ -292,7 +292,7 @@ void SearchSymbols::appendItem(const QString &symbolName, const QString &symbolT
|
||||
const QString &symbolScope, ModelItemInfo::ItemType itemType,
|
||||
Symbol *symbol)
|
||||
{
|
||||
if (!symbol->name())
|
||||
if (!symbol->name() || symbol->isGenerated())
|
||||
return;
|
||||
|
||||
QString path = m_paths.value(symbol->fileId(), QString());
|
||||
|
||||
Reference in New Issue
Block a user