summaryrefslogtreecommitdiffstats
path: root/src/tools/moc/moc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/moc/moc.h')
-rw-r--r--src/tools/moc/moc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/moc/moc.h b/src/tools/moc/moc.h
index 8043a547fc..0e1f33a804 100644
--- a/src/tools/moc/moc.h
+++ b/src/tools/moc/moc.h
@@ -141,6 +141,7 @@ struct PropertyDef
bool final = false;
bool required = false;
bool isQProperty = false;
+ bool isQPropertyWithNotifier = false;
int location = -1; // token index, used for error reporting
@@ -200,7 +201,7 @@ struct ClassDef : BaseDef {
QVector<QByteArray> nonClassSignalList;
QVector<PropertyDef> propertyList;
QVector<PrivateQPropertyDef> privateQProperties;
- QSet<QByteArray> qPropertyMembers;
+ QHash<QByteArray, bool> qPropertyMembersMaybeWithNotifier;
int revisionedMethods = 0;
bool hasQObject = false;