summaryrefslogtreecommitdiffstats
path: root/src/uml/qextensionpoint.cpp
diff options
context:
space:
mode:
authorSandro S. Andrade <sandroandrade@kde.org>2012-12-10 13:38:24 +0000
committerSandro S. Andrade <sandroandrade@kde.org>2012-12-10 16:40:05 +0100
commitcd5a0d52808978dba9007fe1298de058a207312c (patch)
treea8dbc4acb99fc998b680a236e88fcb6d6aa5f8b7 /src/uml/qextensionpoint.cpp
parent2296928a5108cbc8c4aa6038d5777972d86dd7b0 (diff)
Update QtUml and examples to use new version of QtMof
Change-Id: I60f7b08983168fb63c8bd37eb44929f88744a989 Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qextensionpoint.cpp')
-rw-r--r--src/uml/qextensionpoint.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uml/qextensionpoint.cpp b/src/uml/qextensionpoint.cpp
index a2e999b5..d29852ae 100644
--- a/src/uml/qextensionpoint.cpp
+++ b/src/uml/qextensionpoint.cpp
@@ -63,12 +63,12 @@ QExtensionPointPrivate::~QExtensionPointPrivate()
\brief An extension point identifies a point in the behavior of a use case where that behavior can be extended by the behavior of some other (extending) use case, as specified by an extend relationship.
*/
-QExtensionPoint::QExtensionPoint(QUmlObject *parent, QUmlObject *wrapper) :
+QExtensionPoint::QExtensionPoint(QtMof::QMofObject *parent, QtMof::QMofObject *wrapper) :
QRedefinableElement(*new QExtensionPointPrivate, parent, wrapper)
{
}
-QExtensionPoint::QExtensionPoint(QExtensionPointPrivate &dd, QUmlObject *parent, QUmlObject *wrapper) :
+QExtensionPoint::QExtensionPoint(QExtensionPointPrivate &dd, QtMof::QMofObject *parent, QtMof::QMofObject *wrapper) :
QRedefinableElement(dd, parent, wrapper)
{
}
@@ -105,7 +105,7 @@ void QExtensionPoint::setUseCase(QUseCase *useCase)
d->useCase = useCase;
// Adjust subsetted property(ies)
- (qumlobject_cast<QNamedElementPrivate *>(d))->setNamespace_(qumlobject_cast<QNamespace *>(useCase));
+ (qmofobject_cast<QNamedElementPrivate *>(d))->setNamespace_(qmofobject_cast<QNamespace *>(useCase));
// Adjust opposite property
if (useCase)