@@ -2305,7 +2305,7 @@ NONLopt [^\n]*
2305
2305
unput(';');
2306
2306
BEGIN(FindMembers);
2307
2307
}
2308
- <QtPropType>{B}+ {
2308
+ <QtPropType>{BN}+ {
2309
2309
yyextra->current->name+=yytext;
2310
2310
}
2311
2311
<QtPropType>"*" {
@@ -2317,24 +2317,24 @@ NONLopt [^\n]*
2317
2317
yyextra->current->type+= yyextra->current->name;
2318
2318
yyextra->current->name=yytext;
2319
2319
}
2320
- <QtPropType,QtPropAttr>{B }+"READ"{B }+ {
2320
+ <QtPropType,QtPropAttr>{BN }+"READ"{BN }+ {
2321
2321
yyextra->current->spec.setReadable(true);
2322
2322
BEGIN(QtPropRead);
2323
2323
}
2324
- <QtPropType,QtPropAttr>{B }+"WRITE"{B }+ {
2324
+ <QtPropType,QtPropAttr>{BN }+"WRITE"{BN }+ {
2325
2325
yyextra->current->spec.setWritable(true);
2326
2326
BEGIN(QtPropWrite);
2327
2327
}
2328
- <QtPropType,QtPropAttr>{B }+"MEMBER"{B }+{ID} | // member property => not supported yet
2329
- <QtPropType,QtPropAttr>{B }+"RESET"{B }+{ID} | // reset method => not supported yet
2330
- <QtPropType,QtPropAttr>{B }+"SCRIPTABLE"{B }+{ID} | // scriptable property => not supported yet
2331
- <QtPropType,QtPropAttr>{B }+"DESIGNABLE"{B }+{ID} | // designable property => not supported yet
2332
- <QtPropType,QtPropAttr>{B }+"NOTIFY"{B }+{ID} | // notify property => not supported yet
2333
- <QtPropType,QtPropAttr>{B }+"REVISION"{B }+{ID} | // revision property => not supported yet
2334
- <QtPropType,QtPropAttr>{B }+"STORED"{B }+{ID} | // stored property => not supported yet
2335
- <QtPropType,QtPropAttr>{B }+"USER"{B }+{ID} | // user property => not supported yet
2336
- <QtPropType,QtPropAttr>{B }+"CONSTANT"{B } | // constant property => not supported yet
2337
- <QtPropType,QtPropAttr>{B }+"FINAL"{B } { // final property => not supported yet
2328
+ <QtPropType,QtPropAttr>{BN }+"MEMBER"{BN }+{ID} | // member property => not supported yet
2329
+ <QtPropType,QtPropAttr>{BN }+"RESET"{BN }+{ID} | // reset method => not supported yet
2330
+ <QtPropType,QtPropAttr>{BN }+"SCRIPTABLE"{BN }+{ID} | // scriptable property => not supported yet
2331
+ <QtPropType,QtPropAttr>{BN }+"DESIGNABLE"{BN }+{ID} | // designable property => not supported yet
2332
+ <QtPropType,QtPropAttr>{BN }+"NOTIFY"{BN }+{ID} | // notify property => not supported yet
2333
+ <QtPropType,QtPropAttr>{BN }+"REVISION"{BN }+{ID} | // revision property => not supported yet
2334
+ <QtPropType,QtPropAttr>{BN }+"STORED"{BN }+{ID} | // stored property => not supported yet
2335
+ <QtPropType,QtPropAttr>{BN }+"USER"{BN }+{ID} | // user property => not supported yet
2336
+ <QtPropType,QtPropAttr>{BN }+"CONSTANT"{BN } | // constant property => not supported yet
2337
+ <QtPropType,QtPropAttr>{BN }+"FINAL"{BN } { // final property => not supported yet
2338
2338
BEGIN(QtPropAttr);
2339
2339
}
2340
2340
<QtPropRead>{ID} {
0 commit comments