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 | e47aaa9b34ffc363d268aca989aab28fdfaf9821 (patch) | |
tree | 369b56d21949c574d30f71bdf24bf1e04f5e1877 /microbe/btreenode.h | |
parent | e05894553004a47b1e2f276bedcf5963b57a3932 (diff) | |
download | ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.tar.gz ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'microbe/btreenode.h')
-rw-r--r-- | microbe/btreenode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/microbe/btreenode.h b/microbe/btreenode.h index 2594d0c..ceed185 100644 --- a/microbe/btreenode.h +++ b/microbe/btreenode.h @@ -50,9 +50,9 @@ class BTreeNode */ void deleteChildren(); /** - * @return the tqparent node. + * @return the parent node. */ - BTreeNode *tqparent() const { return m_parent; } + BTreeNode *parent() const { return m_parent; } /** * @return the left child node. */ @@ -61,7 +61,7 @@ class BTreeNode * @return the right child node. */ BTreeNode *right() const { return m_right; } - void setParent(BTreeNode *tqparent) { m_parent = tqparent; } + void setParent(BTreeNode *parent) { m_parent = parent; } /** * Set the child node on the left to the one give, and reparents it to * this node. |