We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e353ba commit a0444c1Copy full SHA for a0444c1
src/scanner.l
@@ -2209,6 +2209,8 @@ NONLopt [^\n]*
2209
<FindMembers>"Q_OBJECT"|"Q_GADGET" { // Qt object / gadget macro
2210
}
2211
<FindMembers>"Q_PROPERTY" { // Qt property declaration
2212
+ yyextra->yyBegLineNr = yyextra->yyLineNr;
2213
+ yyextra->yyBegColNr = yyextra->yyColNr;
2214
yyextra->current->protection = Protection::Public ; // see bug734245 & bug735462
2215
yyextra->current->mtype = yyextra->mtype = MethodTypes::Property;
2216
yyextra->current->type.resize(0);
0 commit comments