summaryrefslogtreecommitdiffstats
path: root/siplib
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:42:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:42:27 -0600
commitcb279d73d3e14368d9fb5e217706a237342389f6 (patch)
tree3990416a88e25953417cf2cb7aed47bc4d0edbe5 /siplib
parent9677d9d5bb75681b966f69cd553e6f9299e2f12f (diff)
downloadsip4-tqt-cb279d73d3e14368d9fb5e217706a237342389f6.tar.gz
sip4-tqt-cb279d73d3e14368d9fb5e217706a237342389f6.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'siplib')
-rw-r--r--siplib/siplib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/siplib/siplib.c b/siplib/siplib.c
index 2bcaab4..d43f121 100644
--- a/siplib/siplib.c
+++ b/siplib/siplib.c
@@ -9208,12 +9208,12 @@ static int sipWrapper_clear(sipWrapper *self)
}
}
- /* Detach tqchildren (which will be owned by C/C++). */
+ /* Detach children (which will be owned by C/C++). */
while ((sw = (sipSimpleWrapper *)self->first_child) != NULL)
{
/*
* Although this object is being garbage collected it doesn't follow
- * that it's tqchildren should be. So we make sure that the child stays
+ * that it's children should be. So we make sure that the child stays
* alive and remember we have done so.
*/
Py_INCREF(sw);