summaryrefslogtreecommitdiffstats
path: root/libktorrent/torrent/bnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libktorrent/torrent/bnode.cpp')
-rw-r--r--libktorrent/torrent/bnode.cpp28
1 files changed, 14 insertions, 14 deletions
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<DictEntry>::iterator i = tqchildren.begin();
- while (i != tqchildren.end())
+ TQValueList<DictEntry>::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<DictEntry>::iterator i = tqchildren.begin();
- while (i != tqchildren.end())
+ TQValueList<DictEntry>::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<DictEntry>::iterator i = tqchildren.begin();
- while (i != tqchildren.end())
+ TQValueList<DictEntry>::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<DictEntry>::iterator i = tqchildren.begin();
- while (i != tqchildren.end())
+ TQValueList<DictEntry>::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;