summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeclassfield.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codeclassfield.cpp')
-rw-r--r--umbrello/umbrello/codeclassfield.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/umbrello/umbrello/codeclassfield.cpp b/umbrello/umbrello/codeclassfield.cpp
index 0ed3a1f4..60e97c77 100644
--- a/umbrello/umbrello/codeclassfield.cpp
+++ b/umbrello/umbrello/codeclassfield.cpp
@@ -52,7 +52,7 @@ CodeClassField::CodeClassField ( ClassifierCodeDocument * doc , UMLAttribute * a
CodeClassField::~CodeClassField ( ) {
- // remove methods from tqparent document
+ // remove methods from parent document
CodeAccessorMethodList list = m_methodVector;
for(CodeAccessorMethod * m = list.first(); m ; m=list.next())
{
@@ -61,7 +61,7 @@ CodeClassField::~CodeClassField ( ) {
}
list.clear();
- // clear the decl block from tqparent text block list too
+ // clear the decl block from parent text block list too
if(m_declCodeBlock)
{
getParentDocument()->removeTextBlock(m_declCodeBlock);
@@ -270,10 +270,10 @@ void CodeClassField::setAttributesFromNode ( TQDomElement & root) {
// always disconnect
getParentObject()->disconnect(this);
- // superclass call.. may reset the tqparent object
+ // superclass call.. may reset the parent object
CodeParameter::setAttributesFromNode(root);
- // make AFTER super-class call. This will reconnect to the tqparent
+ // make AFTER super-class call. This will reconnect to the parent
// and re-check we have all needed child accessor methods and decl blocks
initFields( );
@@ -301,7 +301,7 @@ void CodeClassField::setAttributesFromNode ( TQDomElement & root) {
} else
if( tag == "header" ) {
- // this is treated in tqparent.. skip over here
+ // this is treated in parent.. skip over here
} else
kWarning()<<"ERROR: bad savefile? code classfield loadFromXMI got child element with unknown tag:"<<tag<<" ignoring node."<<endl;
@@ -482,7 +482,7 @@ void CodeClassField::updateContent()
{
// Set properties for writing out the various methods derived from UMLRoles.
- // I suppose this could be supported under individual accessor method synctotqparent
+ // I suppose this could be supported under individual accessor method synctoparent
// calls, but its going to happen again and again for many languages. Why not a catch
// all here? -b.t.
if (parentIsAttribute())
@@ -569,7 +569,7 @@ void CodeClassField::updateContent()
}
}
-// determine whether the tqparent object in this classfield indicates that it is
+// determine whether the parent object in this classfield indicates that it is
// a single variable or a List (Vector). One day this will be done correctly with special
// multiplicity object that we don't have to figure out what it means via regex.
bool CodeClassField::fieldIsSingleValue ( )