summaryrefslogtreecommitdiffstats
path: root/microbe/btreenode.h
diff options
context:
space:
mode:
Diffstat (limited to 'microbe/btreenode.h')
-rw-r--r--microbe/btreenode.h6
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.