summaryrefslogtreecommitdiffstats
path: root/src/tools/moc/moc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/moc/moc.cpp')
-rw-r--r--src/tools/moc/moc.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/tools/moc/moc.cpp b/src/tools/moc/moc.cpp
index bfbcde1507..8bb70a76dc 100644
--- a/src/tools/moc/moc.cpp
+++ b/src/tools/moc/moc.cpp
@@ -1415,10 +1415,6 @@ void Moc::parseProperty(ClassDef *def)
createPropertyDef(propDef);
next(RPAREN);
- if(!propDef.notify.isEmpty())
- def->notifyableProperties++;
- if (propDef.revision > 0)
- ++def->revisionedProperties;
def->propertyList += propDef;
}
@@ -1512,11 +1508,6 @@ void Moc::parsePrivateProperty(ClassDef *def)
createPropertyDef(propDef);
- if(!propDef.notify.isEmpty())
- def->notifyableProperties++;
- if (propDef.revision > 0)
- ++def->revisionedProperties;
-
def->propertyList += propDef;
}
@@ -1550,9 +1541,6 @@ void Moc::parsePrivateQProperty(ClassDef *def)
next(RPAREN);
- if (!propDef.notify.isEmpty())
- def->notifyableProperties++;
-
def->propertyList += propDef;
}