diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-30 19:19:02 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-30 19:19:02 (GMT) |
commit | ff7cc1c73c3d4b3449862055bd08b0f361e5b358 (patch) | |
tree | 1eece33292bb2e29a9ebe65e908ec08b3a6003ff /src/scanner.l | |
parent | 22e44853813066e45b483b1b6633199b3d2bf509 (diff) | |
download | Doxygen-ff7cc1c73c3d4b3449862055bd08b0f361e5b358.zip Doxygen-ff7cc1c73c3d4b3449862055bd08b0f361e5b358.tar.gz Doxygen-ff7cc1c73c3d4b3449862055bd08b0f361e5b358.tar.bz2 |
Bug 735462 - There's no such thing as a private Q_PROPERTY
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 2 |
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); |