summaryrefslogtreecommitdiffstats
path: root/src/tagreader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tagreader.cpp')
-rw-r--r--src/tagreader.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tagreader.cpp b/src/tagreader.cpp
index 6934966..3edb09f 100644
--- a/src/tagreader.cpp
+++ b/src/tagreader.cpp
@@ -927,9 +927,14 @@ void TagFileParser::buildMemberList(Entry *ce,QList<TagMemberInfo> &members)
}
else if (tmi->kind=="property")
{
- me->section = Entry::FUNCTION_SEC;
+ me->section = Entry::VARIABLE_SEC;
me->mtype = Property;
}
+ else if (tmi->kind=="event")
+ {
+ me->section = Entry::VARIABLE_SEC;
+ me->mtype = Event;
+ }
else if (tmi->kind=="variable")
{
me->section = Entry::VARIABLE_SEC;