summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index f28bf7a..ef45139 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -590,6 +590,15 @@ static void generateXMLForMember(MemberDef *md,QTextStream &ti,QTextStream &t,De
t << "\"";
}
+ else if (md->memberType() == MemberDef::Property)
+ {
+ t << " readable=\"";
+ if (md->isReadable()) t << "yes"; else t << "no";
+ t << "\" writable=\"";
+ if (md->isWritable()) t << "yes"; else t << "no";
+ t << "\"";
+ }
+
t << ">" << endl;