summaryrefslogtreecommitdiffstats
path: root/src/fetch/entrezfetcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetch/entrezfetcher.cpp')
-rw-r--r--src/fetch/entrezfetcher.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fetch/entrezfetcher.cpp b/src/fetch/entrezfetcher.cpp
index 9c83f7c..0d38009 100644
--- a/src/fetch/entrezfetcher.cpp
+++ b/src/fetch/entrezfetcher.cpp
@@ -270,7 +270,7 @@ void EntrezFetcher::summaryResults() {
return;
}
// top child is eSummaryResult
- // all tqchildren are DocSum
+ // all children are DocSum
for(TQDomNode n = dom.documentElement().firstChild(); !n.isNull(); n = n.nextSibling()) {
TQDomElement e = n.toElement();
if(e.isNull() || e.tagName() != Latin1Literal("DocSum")) {
@@ -292,7 +292,7 @@ void EntrezFetcher::summaryResults() {
} else if(nodes.item(j).toElement().attribute(TQString::fromLatin1("Name")) == Latin1Literal("AuthorList")) {
TQStringList list;
for(TQDomNode aNode = nodes.item(j).firstChild(); !aNode.isNull(); aNode = aNode.nextSibling()) {
- // lazy, assume all tqchildren Items are authors
+ // lazy, assume all children Items are authors
if(aNode.nodeName() == Latin1Literal("Item")) {
list << aNode.toElement().text();
}