C++ completion: Skip Q_PROPERTY and Q_ENUMS symbols.

Reviewed-by: Erik Verbruggen
This commit is contained in:
Christian Kamm
2011-01-07 09:22:54 +01:00
parent 0b5591ae7a
commit f02a852f21
2 changed files with 12 additions and 3 deletions

View File

@@ -373,6 +373,12 @@ bool Symbol::isClass() const
bool Symbol::isForwardClassDeclaration() const
{ return asForwardClassDeclaration() != 0; }
bool Symbol::isQtPropertyDeclaration() const
{ return asQtPropertyDeclaration() != 0; }
bool Symbol::isQtEnum() const
{ return asQtEnum() != 0; }
bool Symbol::isBlock() const
{ return asBlock() != 0; }