Skip to content
Snippets Groups Projects
Commit ff910fd7 authored by Erik Verbruggen's avatar Erik Verbruggen
Browse files

Added "@property" to the outline entries for ObjC properties.

parent 0874b4a2
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,8 @@ QVariant OverviewModel::data(const QModelIndex &index, int role) const
if (clazz->isCategory())
name += QLatin1String(" (") + _overview.prettyName(clazz->categoryName()) + QLatin1Char(')');
}
if (symbol->isObjCPropertyDeclaration())
name = QLatin1String("@property ") + name;
if (symbol->isObjCMethod()) {
ObjCMethod *method = symbol->asObjCMethod();
if (method->isStatic())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment