summaryrefslogtreecommitdiffstats
path: root/kig/objects/object_imp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kig/objects/object_imp.cc')
-rw-r--r--kig/objects/object_imp.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kig/objects/object_imp.cc b/kig/objects/object_imp.cc
index 7b2498a3..9a3ee679 100644
--- a/kig/objects/object_imp.cc
+++ b/kig/objects/object_imp.cc
@@ -178,7 +178,7 @@ bool ObjectImp::canFillInNextEscape() const
return false;
}
-ObjectImpType::ObjectImpType( const ObjectImpType* tqparent,
+ObjectImpType::ObjectImpType( const ObjectImpType* parent,
const char* internalname,
const char* translatedname,
const char* selectstatement,
@@ -189,7 +189,7 @@ ObjectImpType::ObjectImpType( const ObjectImpType* tqparent,
const char* attachtothisstatement,
const char* showastatement,
const char* hideastatement )
- : mtqparent( tqparent ), minternalname( internalname ),
+ : mparent( parent ), minternalname( internalname ),
mtranslatedname( translatedname ), mselectstatement( selectstatement ),
mselectnamestatement( selectnamestatement ),
mremoveastatement( removeastatement ), maddastatement( addastatement ),
@@ -207,7 +207,7 @@ ObjectImpType::~ObjectImpType()
bool ObjectImpType::inherits( const ObjectImpType* t ) const
{
- return t == this || (mtqparent && mtqparent->inherits( t ) );
+ return t == this || (mparent && mparent->inherits( t ) );
}
const char* ObjectImpType::internalName() const