summaryrefslogtreecommitdiffstats
path: root/karbon/core/vobject.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /karbon/core/vobject.h
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz
koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karbon/core/vobject.h')
-rw-r--r--karbon/core/vobject.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/karbon/core/vobject.h b/karbon/core/vobject.h
index 7cbbb0e9..899422ee 100644
--- a/karbon/core/vobject.h
+++ b/karbon/core/vobject.h
@@ -44,7 +44,7 @@ class KoGenStyle;
* have the ability to draw itself using a painter, perform
* hit detection, transform on demand, clone and load/save itself.
* Also each object manages its own bounding box and keeps track of its
- * tqparent object.
+ * parent object.
*/
class KARBONBASE_EXPORT VObject
{
@@ -63,16 +63,16 @@ public:
};
/**
- * Constructs a new object that is child of tqparent and has the given state.
+ * Constructs a new object that is child of parent and has the given state.
*
- * @param tqparent the new object's tqparent
+ * @param parent the new object's parent
* @param state the new object's state
*/
- VObject( VObject* tqparent, VState state = edit );
+ VObject( VObject* parent, VState state = edit );
/**
* Copy constructor.
- * Copies tqparent, state and name of given object.
+ * Copies parent, state and name of given object.
*
* @param obj the object to copy properties from
*/
@@ -133,18 +133,18 @@ public:
}
/**
- * Sets a new tqparent object.
+ * Sets a new parent object.
*
- * @param tqparent the new tqparent object
+ * @param parent the new parent object
*/
- void setParent( VObject* tqparent ) { m_parent = tqparent; }
+ void setParent( VObject* parent ) { m_parent = parent; }
/**
- * Returns pointer to current tqparent object.
+ * Returns pointer to current parent object.
*
- * @return pointer to current tqparent object or 0 if no tqparent object is set
+ * @return pointer to current parent object or 0 if no parent object is set
*/
- VObject* tqparent() const { return m_parent; }
+ VObject* parent() const { return m_parent; }
/**
* Get the state the object is in.
@@ -266,7 +266,7 @@ public:
/**
* Return document the object belongs to.
*
- * @return pointer to tqparent document or 0 if object does not belong to a document
+ * @return pointer to parent document or 0 if object does not belong to a document
*/
VDocument *document() const;