summaryrefslogtreecommitdiffstats
path: root/akregator/src/tagnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/tagnode.cpp')
-rw-r--r--akregator/src/tagnode.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/akregator/src/tagnode.cpp b/akregator/src/tagnode.cpp
index 35c72072..24d81755 100644
--- a/akregator/src/tagnode.cpp
+++ b/akregator/src/tagnode.cpp
@@ -196,7 +196,7 @@ void TagNode::slotArticlesAdded(TreeNode* node, const TQValueList<Article>& list
bool added = false;
for (TQValueList<Article>::ConstIterator it = list.begin(); it != list.end(); ++it)
{
- if (!d->articles.tqcontains(*it) && d->filter.matches(*it))
+ if (!d->articles.contains(*it) && d->filter.matches(*it))
{
d->articles.append(*it);
d->addedArticlesNotify.append(*it);
@@ -216,7 +216,7 @@ void TagNode::slotArticlesUpdated(TreeNode* node, const TQValueList<Article>& li
bool updated = false;
for (TQValueList<Article>::ConstIterator it = list.begin(); it != list.end(); ++it)
{
- if (d->articles.tqcontains(*it))
+ if (d->articles.contains(*it))
{
if (!d->filter.matches(*it)) // articles is in list, but doesn't match our criteria anymore -> remove it
{
@@ -252,7 +252,7 @@ void TagNode::slotArticlesRemoved(TreeNode* node, const TQValueList<Article>& li
bool removed = false;
for (TQValueList<Article>::ConstIterator it = list.begin(); it != list.end(); ++it)
{
- if (d->articles.tqcontains(*it))
+ if (d->articles.contains(*it))
{
d->articles.remove(*it);
d->removedArticlesNotify.append(*it);