diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /akregator/src/nodelist.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'akregator/src/nodelist.h')
-rw-r--r-- | akregator/src/nodelist.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/akregator/src/nodelist.h b/akregator/src/nodelist.h index 20a52fee9..d5b0024c0 100644 --- a/akregator/src/nodelist.h +++ b/akregator/src/nodelist.h @@ -25,7 +25,7 @@ #ifndef AKREGATOR_NODELIST_H #define AKREGATOR_NODELIST_H -#include <qobject.h> +#include <tqobject.h> class QDomDocument; class QDomNode; @@ -51,27 +51,27 @@ class NodeList : public QObject Q_OBJECT public: - NodeList(QObject *parent=0, const char *name=0); + NodeList(TQObject *parent=0, const char *name=0); virtual ~NodeList(); virtual Folder* rootNode() const; - virtual bool readFromXML(const QDomDocument& doc) = 0; + virtual bool readFromXML(const TQDomDocument& doc) = 0; - virtual QDomDocument toXML() const = 0; + virtual TQDomDocument toXML() const = 0; virtual bool isEmpty() const; TreeNode* findByID(int id) const; /** returns the title of the feed list (as used in the OPML document) */ - const QString& title() const; + const TQString& title() const; /** sets the title of the feed list */ - void setTitle(const QString& name); + void setTitle(const TQString& name); /** returns a flat list containing all nodes in the tree */ - const QValueList<TreeNode*>& asFlatList() const; + const TQValueList<TreeNode*>& asFlatList() const; signals: void signalDestroyed(NodeList*); @@ -90,8 +90,8 @@ public slots: public: // compat with KDE-3.x assertions, remove for KDE 4 // protected: - QValueList<TreeNode*>* flatList() const; - QMap<int, TreeNode*>* idMap() const; + TQValueList<TreeNode*>* flatList() const; + TQMap<int, TreeNode*>* idMap() const; int generateID(); void setRootNode(Folder* folder); @@ -107,7 +107,7 @@ public slots: // compat with KDE-3.x assertions, remove for KDE 4 public: // compat with KDE-3.x assertions, remove for KDE 4 // private: - NodeList(const NodeList&) : QObject() {} + NodeList(const NodeList&) : TQObject() {} NodeList& operator=(const NodeList&) { return *this; } friend class AddNodeVisitor; |