diff options
author | Sandro S. Andrade <sandroandrade@kde.org> | 2013-10-13 23:19:00 -0300 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-10-14 15:03:23 +0200 |
commit | b715a4573294771118213d866d70b947bade715b (patch) | |
tree | 30036c525d96c5feb20e209e4e4b988ecca5f151 /src/uml/qumlconnectableelement.cpp | |
parent | 2dbf082f802705c430832848abc73b792697c441 (diff) |
Update automatic generation of UML metamodel implementation
Change-Id: I4a2ae9cdcde86c33669e2e56cec651e7bce3e629
Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qumlconnectableelement.cpp')
-rw-r--r-- | src/uml/qumlconnectableelement.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/uml/qumlconnectableelement.cpp b/src/uml/qumlconnectableelement.cpp index 998282da..f631b3f5 100644 --- a/src/uml/qumlconnectableelement.cpp +++ b/src/uml/qumlconnectableelement.cpp @@ -48,7 +48,6 @@ #include <QtUml/QUmlNamedElement> #include <QtUml/QUmlNamespace> #include <QtUml/QUmlPackage> -#include <QtUml/QUmlParameterableElement> #include <QtUml/QUmlStringExpression> #include <QtUml/QUmlTemplateParameter> #include <QtUml/QUmlType> @@ -94,7 +93,7 @@ const QList<QUmlConnectorEnd *> QUmlConnectableElement::ends() const { // This is a read-only derived association end - qWarning("UmlConnectableElement::ends(): to be implemented (this is a derived association end)"); + qWarning("QUmlConnectableElement::ends(): to be implemented (this is a derived association end)"); return QList<QUmlConnectorEnd *>(); } @@ -103,7 +102,7 @@ void QUmlConnectableElement::addEnd(QUmlConnectorEnd *end) { // This is a read-only derived association end - qWarning("UmlConnectableElement::addEnd(): to be implemented (this is a derived association end)"); + qWarning("QUmlConnectableElement::addEnd(): to be implemented (this is a derived association end)"); Q_UNUSED(end); if (false /* <derivedexclusion-criteria> */) { @@ -120,7 +119,7 @@ void QUmlConnectableElement::removeEnd(QUmlConnectorEnd *end) { // This is a read-only derived association end - qWarning("UmlConnectableElement::removeEnd(): to be implemented (this is a derived association end)"); + qWarning("QUmlConnectableElement::removeEnd(): to be implemented (this is a derived association end)"); Q_UNUSED(end); if (false /* <derivedexclusion-criteria> */) { |