summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-08-30 19:19:02 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-08-30 19:19:02 (GMT)
commitff7cc1c73c3d4b3449862055bd08b0f361e5b358 (patch)
tree1eece33292bb2e29a9ebe65e908ec08b3a6003ff
parent22e44853813066e45b483b1b6633199b3d2bf509 (diff)
downloadDoxygen-ff7cc1c73c3d4b3449862055bd08b0f361e5b358.zip
Doxygen-ff7cc1c73c3d4b3449862055bd08b0f361e5b358.tar.gz
Doxygen-ff7cc1c73c3d4b3449862055bd08b0f361e5b358.tar.bz2
Bug 735462 - There's no such thing as a private Q_PROPERTY
-rw-r--r--src/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 8370f13..f70d7d9 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -2245,7 +2245,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
<FindMembers>"Q_OBJECT" { // Qt object macro
}
<FindMembers>"Q_PROPERTY" { // Qt property declaration
- //current->protection = protection = Public ; // see bug734245
+ current->protection = Public ; // see bug734245 & bug735462
current->mtype = mtype = Property;
current->type.resize(0);
BEGIN(QtPropType);