summaryrefslogtreecommitdiffstats
path: root/src/uml/qumltimeconstraint.cpp
diff options
context:
space:
mode:
authorSandro S. Andrade <sandroandrade@kde.org>2013-11-18 08:48:05 -0300
committerSandro S. Andrade <sandroandrade@kde.org>2013-11-18 12:43:33 +0100
commit1d6a088d69ed5a519af736f748827125231ac24f (patch)
tree78f10ec83a70ada2389b4fa442ee905833401696 /src/uml/qumltimeconstraint.cpp
parent7030dc08e8a9198390ccf038d3c8629b047e4749 (diff)
Update UML metamodel implementation
Change-Id: I4355b42ea190b7c25693d47771874deaf182ba89 Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qumltimeconstraint.cpp')
-rw-r--r--src/uml/qumltimeconstraint.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/uml/qumltimeconstraint.cpp b/src/uml/qumltimeconstraint.cpp
index bf23940e..158fe104 100644
--- a/src/uml/qumltimeconstraint.cpp
+++ b/src/uml/qumltimeconstraint.cpp
@@ -139,6 +139,9 @@ void QUmlTimeConstraint::setSpecification(QUmlTimeInterval *specification)
if (specification && specification->asQModelingObject() && this->asQModelingObject())
QObject::connect(specification->asQModelingObject(), SIGNAL(destroyed()), this->asQModelingObject(), SLOT(setSpecification()));
specification->asQModelingObject()->setParent(this->asQModelingObject());
+
+ // Adjust redefined properties
+ QUmlIntervalConstraint::setSpecification(specification);
}
}