diff options
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; |