summaryrefslogtreecommitdiffstats
path: root/akregator/src/treenode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/treenode.cpp')
-rw-r--r--akregator/src/treenode.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/akregator/src/treenode.cpp b/akregator/src/treenode.cpp
index 85bf3c5e..5aa31686 100644
--- a/akregator/src/treenode.cpp
+++ b/akregator/src/treenode.cpp
@@ -25,8 +25,8 @@
#include "folder.h"
#include "treenode.h"
-#include <qstring.h>
-#include <qvaluelist.h>
+#include <tqstring.h>
+#include <tqvaluelist.h>
#include <kdebug.h>
@@ -39,14 +39,14 @@ class TreeNode::TreeNodePrivate
bool doNotify;
bool nodeChangeOccurred;
bool articleChangeOccurred;
- QString title;
+ TQString title;
Folder* parent;
uint id;
bool signalDestroyedEmitted;
};
TreeNode::TreeNode()
- : QObject(0, 0), d(new TreeNodePrivate)
+ : TQObject(0, 0), d(new TreeNodePrivate)
{
d->doNotify = true;
d->nodeChangeOccurred = false;
@@ -74,12 +74,12 @@ TreeNode::~TreeNode()
d = 0;
}
-const QString& TreeNode::title() const
+const TQString& TreeNode::title() const
{
return d->title;
}
-void TreeNode::setTitle(const QString& title)
+void TreeNode::setTitle(const TQString& title)
{
if (d->title != title)
@@ -93,7 +93,7 @@ TreeNode* TreeNode::nextSibling() const
{
if (!d->parent)
return 0;
- QValueList<TreeNode*> children = d->parent->children();
+ TQValueList<TreeNode*> children = d->parent->children();
TreeNode* me = (TreeNode*)this;
int idx = children.findIndex(me);
@@ -105,7 +105,7 @@ TreeNode* TreeNode::prevSibling() const
{
if (!d->parent)
return 0;
- QValueList<TreeNode*> children = d->parent->children();
+ TQValueList<TreeNode*> children = d->parent->children();
TreeNode* me = (TreeNode*)this;
int idx = children.findIndex(me);