From f96f74ffa7040e64ae3352e08c810c383c8a0ba2 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:32:56 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- libktorrent/torrent/bnode.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'libktorrent/torrent/bnode.cpp') diff --git a/libktorrent/torrent/bnode.cpp b/libktorrent/torrent/bnode.cpp index 07b7ba0..c32f09b 100644 --- a/libktorrent/torrent/bnode.cpp +++ b/libktorrent/torrent/bnode.cpp @@ -56,8 +56,8 @@ namespace bt BDictNode::~BDictNode() { - TQValueList::iterator i = tqchildren.begin(); - while (i != tqchildren.end()) + TQValueList::iterator i = children.begin(); + while (i != children.end()) { DictEntry & e = *i; delete e.node; @@ -70,13 +70,13 @@ namespace bt DictEntry entry; entry.key = key; entry.node = node; - tqchildren.append(entry); + children.append(entry); } BNode* BDictNode::getData(const TQString & key) { - TQValueList::iterator i = tqchildren.begin(); - while (i != tqchildren.end()) + TQValueList::iterator i = children.begin(); + while (i != children.end()) { DictEntry & e = *i; if (TQString(e.key) == key) @@ -88,8 +88,8 @@ namespace bt BDictNode* BDictNode::getDict(const TQByteArray & key) { - TQValueList::iterator i = tqchildren.begin(); - while (i != tqchildren.end()) + TQValueList::iterator i = children.begin(); + while (i != children.end()) { DictEntry & e = *i; if (e.key == key) @@ -120,8 +120,8 @@ namespace bt void BDictNode::printDebugInfo() { Out() << "DICT" << endl; - TQValueList::iterator i = tqchildren.begin(); - while (i != tqchildren.end()) + TQValueList::iterator i = children.begin(); + while (i != children.end()) { DictEntry & e = *i; Out() << TQString(e.key) << ": " << endl; @@ -135,7 +135,7 @@ namespace bt BListNode::BListNode(Uint32 off) : BNode(LIST,off) { - tqchildren.setAutoDelete(true); + children.setAutoDelete(true); } @@ -145,7 +145,7 @@ namespace bt void BListNode::append(BNode* node) { - tqchildren.append(node); + children.append(node); } BListNode* BListNode::getList(Uint32 idx) @@ -165,10 +165,10 @@ namespace bt void BListNode::printDebugInfo() { - Out() << "LIST " << tqchildren.count() << endl; - for (Uint32 i = 0;i < tqchildren.count();i++) + Out() << "LIST " << children.count() << endl; + for (Uint32 i = 0;i < children.count();i++) { - BNode* n = tqchildren.at(i); + BNode* n = children.at(i); n->printDebugInfo(); } Out() << "END" << endl; -- cgit v1.2.1