summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/idlwriter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/idlwriter.cpp')
-rw-r--r--umbrello/umbrello/codegenerators/idlwriter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/umbrello/umbrello/codegenerators/idlwriter.cpp b/umbrello/umbrello/codegenerators/idlwriter.cpp
index 1d517fbb..efb49dc9 100644
--- a/umbrello/umbrello/codegenerators/idlwriter.cpp
+++ b/umbrello/umbrello/codegenerators/idlwriter.cpp
@@ -275,13 +275,13 @@ void IDLWriter::writeClass(UMLClassifier *c) {
UMLClassifierList superclasses = c->getSuperClasses();
if (! superclasses.isEmpty()) {
idl << " : ";
- UMLClassifier *tqparent = superclasses.first();
+ UMLClassifier *parent = superclasses.first();
int n_parents = superclasses.count();
while (n_parents--) {
- idl << tqparent->getFullyQualifiedName("::");
+ idl << parent->getFullyQualifiedName("::");
if (n_parents)
idl << ", ";
- tqparent = superclasses.next();
+ parent = superclasses.next();
}
}
idl << " {" << m_endl << m_endl;