From eb570158698cf61dad4f77d950ef908160f6c3cc Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kig/objects/object_calcer.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kig/objects/object_calcer.h') diff --git a/kig/objects/object_calcer.h b/kig/objects/object_calcer.h index 92eebc8e..98262e5e 100644 --- a/kig/objects/object_calcer.h +++ b/kig/objects/object_calcer.h @@ -90,7 +90,7 @@ public: */ void addChild( ObjectCalcer* c ); /** - * a calcer should call this in its destructor, to inform its tqparent + * a calcer should call this in its destructor, to inform its parent * that it is no longer a child of this calcer. This will release * the reference taken in addChild.. */ @@ -106,7 +106,7 @@ public: virtual ~ObjectCalcer(); /** - * Returns the tqparent ObjectCalcer's of this ObjectCalcer. + * Returns the parent ObjectCalcer's of this ObjectCalcer. */ virtual std::vector parents() const = 0; /** @@ -124,7 +124,7 @@ public: * certain type. This method returns the ObjectImpType that \p o * should have. \p os is a list of all the parents in order, and * \p o is part of it. This method will return the ObjectImpType - * that the tqparent should *at least* be. For example, a Translated + * that the parent should *at least* be. For example, a Translated * object can translate any sort of object, so it will return * ObjectImp::stype() here ( the topmost ObjectImpType, that all * other ObjectImpType's inherit ). @@ -267,7 +267,7 @@ public: }; /** - * This is an ObjectCalcer that has a single tqparent, and gets a + * This is an ObjectCalcer that has a single parent, and gets a * certain property from it in its calc() method. * * \see ObjectImp::property @@ -276,14 +276,14 @@ class ObjectPropertyCalcer : public ObjectCalcer { ObjectImp* mimp; - ObjectCalcer* mtqparent; + ObjectCalcer* mparent; int mpropid; public: /** * Construct a new ObjectPropertyCalcer, that will get the property - * from tqparent with number propid. + * from parent with number propid. */ - ObjectPropertyCalcer( ObjectCalcer* tqparent, int propid ); + ObjectPropertyCalcer( ObjectCalcer* parent, int propid ); ~ObjectPropertyCalcer(); const ObjectImp* imp() const; @@ -291,7 +291,7 @@ public: void calc( const KigDocument& doc ); int propId() const; - ObjectCalcer* tqparent() const; + ObjectCalcer* parent() const; const ObjectImpType* impRequirement( ObjectCalcer* o, const std::vector& os ) const; -- cgit v1.2.1