diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | e7366c97c998679efa80cf61c88e64a11a3d3c33 (patch) | |
tree | a161d2940165f6cc47c05f0271ad8e5f64ffe6e8 /kpovmodeler/pmobject.h | |
parent | da4be7880ff1de6415ab6256afd2514e64f5fa2e (diff) | |
download | tdegraphics-e7366c97c998679efa80cf61c88e64a11a3d3c33.tar.gz tdegraphics-e7366c97c998679efa80cf61c88e64a11a3d3c33.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmobject.h')
-rw-r--r-- | kpovmodeler/pmobject.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kpovmodeler/pmobject.h b/kpovmodeler/pmobject.h index 1275f3d9..3bffb7d3 100644 --- a/kpovmodeler/pmobject.h +++ b/kpovmodeler/pmobject.h @@ -61,11 +61,11 @@ class PMObject friend class PMCompositeObject; public: /** - * Creates an empty PMObject without tqparent. + * Creates an empty PMObject without parent. */ PMObject( PMPart* part ); /** - * Copy constructor. All object pointers (tqparent, siblings) are set to 0! + * Copy constructor. All object pointers (parent, siblings) are set to 0! */ PMObject( const PMObject& o ); /** @@ -121,9 +121,9 @@ public: virtual bool exportPovray( ) const { return true; } /** - * Returns a pointer to the tqparent object. + * Returns a pointer to the parent object. */ - PMObject* tqparent( ) const { return m_pParent; } + PMObject* parent( ) const { return m_pParent; } /** * Returns a pointer to the corresponding part */ @@ -385,7 +385,7 @@ public: void setSelected( bool s ); /** * Returns true if this item can be selected. An item cannot be selected - * if a tqparent object is selected + * if a parent object is selected */ bool isSelectable( ); /** @@ -411,9 +411,9 @@ public: * Creates a new edit widget that can display this object and * returns a pointer to it. * - * The widget will be created as a child of tqparent. + * The widget will be created as a child of parent. */ - virtual PMDialogEditBase* editWidget( TQWidget* tqparent ) const; + virtual PMDialogEditBase* editWidget( TQWidget* parent ) const; /** * Returns the name of the pixmap that is displayed in the tree view * and dialog view @@ -470,7 +470,7 @@ public: protected: /** * Adds num to the number of selected objects in this object and all - * tqparent objects. num can be negative. + * parent objects. num can be negative. */ virtual void adjustSelectedChildren( int /*num*/ ) { }; /** @@ -479,7 +479,7 @@ protected: PMMemento* m_pMemento; private: /** - * Pointer to the tqparent object. 0 if the object has no tqparent. + * Pointer to the parent object. 0 if the object has no parent. */ PMObject* m_pParent; /** |