diff options
author | Sandro S. Andrade <sandroandrade@kde.org> | 2013-08-25 16:07:06 -0300 |
---|---|---|
committer | Sandro S. Andrade <sandroandrade@kde.org> | 2013-08-25 21:06:07 +0200 |
commit | 1c770ad764a39ce0ad40913c1c4bd72bd43710a9 (patch) | |
tree | e6f7789ee1b007e081c7f45e385135b6e8e37bd2 /src/uml/qumlobjectnode.h | |
parent | ea1a2ed03ac0880ef969e01598016de0581fbd41 (diff) |
Add handling of derived properties in artifact generation from xmi
Change-Id: I3764f41fd6a727f1a09daed9fc82c9fedf8ba5af
Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qumlobjectnode.h')
-rw-r--r-- | src/uml/qumlobjectnode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uml/qumlobjectnode.h b/src/uml/qumlobjectnode.h index aa6e375e..a7e8851c 100644 --- a/src/uml/qumlobjectnode.h +++ b/src/uml/qumlobjectnode.h @@ -65,8 +65,8 @@ public: // Owned attributes QSet<QUmlState *> inState() const; - void addInState(QSet<QUmlState *> inState); - void removeInState(QSet<QUmlState *> inState); + void addInState(QUmlState *inState); + void removeInState(QUmlState *inState); bool isControlType() const; void setControlType(bool isControlType); QtUml::ObjectNodeOrderingKind ordering() const; |