diff options
| author | Sandro S. Andrade <sandroandrade@kde.org> | 2013-10-29 08:42:34 -0300 |
|---|---|---|
| committer | Sandro S. Andrade <sandroandrade@kde.org> | 2013-10-29 12:38:52 +0100 |
| commit | 81cb4927b06b9c50c1be1107f04bb0877112cb6c (patch) | |
| tree | c7cd9e13ca85d1b4818a2d4d90d10123e7f3f609 /src/uml/qobjects/qumladdvariablevalueactionobject.cpp | |
| parent | c9af31e57a3977ea74bf9d9196e187c751a676ce (diff) | |
Fix reset of boolean properties
Change-Id: I4dbf905a4aa7e0df53a4e894748d40c77e9fe787
Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qobjects/qumladdvariablevalueactionobject.cpp')
| -rw-r--r-- | src/uml/qobjects/qumladdvariablevalueactionobject.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uml/qobjects/qumladdvariablevalueactionobject.cpp b/src/uml/qobjects/qumladdvariablevalueactionobject.cpp index 4e91fd68..9f4752b7 100644 --- a/src/uml/qobjects/qumladdvariablevalueactionobject.cpp +++ b/src/uml/qobjects/qumladdvariablevalueactionobject.cpp @@ -451,7 +451,7 @@ void QUmlAddVariableValueActionObject::unsetLeaf() { Q_D(QModelingObject); setLeaf(false); - d->modifiedResettableProperties.removeAll(QStringLiteral("leaf")); + d->modifiedResettableProperties.removeAll(QStringLiteral("isLeaf")); } void QUmlAddVariableValueActionObject::addRedefinedElement(QObject *redefinedElement) @@ -584,7 +584,7 @@ void QUmlAddVariableValueActionObject::unsetLocallyReentrant() { Q_D(QModelingObject); setLocallyReentrant(false); - d->modifiedResettableProperties.removeAll(QStringLiteral("locallyReentrant")); + d->modifiedResettableProperties.removeAll(QStringLiteral("isLocallyReentrant")); } void QUmlAddVariableValueActionObject::addLocalPostcondition(QObject *localPostcondition) @@ -647,7 +647,7 @@ void QUmlAddVariableValueActionObject::unsetReplaceAll() { Q_D(QModelingObject); setReplaceAll(false); - d->modifiedResettableProperties.removeAll(QStringLiteral("replaceAll")); + d->modifiedResettableProperties.removeAll(QStringLiteral("isReplaceAll")); } |
