summaryrefslogtreecommitdiffstats
path: root/kmail/kmfoldernode.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmfoldernode.h')
-rw-r--r--kmail/kmfoldernode.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kmail/kmfoldernode.h b/kmail/kmfoldernode.h
index 56f22140a..3d0dbaddc 100644
--- a/kmail/kmfoldernode.h
+++ b/kmail/kmfoldernode.h
@@ -20,9 +20,9 @@
#ifndef kmfoldernode_h
#define kmfoldernode_h
-#include <qobject.h>
-#include <qstring.h>
-#include <qptrlist.h>
+#include <tqobject.h>
+#include <tqstring.h>
+#include <tqptrlist.h>
class KMFolderDir;
@@ -31,7 +31,7 @@ class KMFolderNode: public QObject
Q_OBJECT
public:
- KMFolderNode( KMFolderDir * parent, const QString & name );
+ KMFolderNode( KMFolderDir * parent, const TQString & name );
virtual ~KMFolderNode();
/** Is it a directory where mail folders are stored or is it a folder that
@@ -51,31 +51,31 @@ public:
if the node has no parent. Example: if this object represents a folder
~joe/Mail/inbox then path() returns "/home/joe/Mail" and name() returns
"inbox". */
- virtual QString path() const;
+ virtual TQString path() const;
/** Name of the node. Also used as file name. */
- QString name() const { return mName; }
- void setName(const QString& aName) { mName = aName; }
+ TQString name() const { return mName; }
+ void setName(const TQString& aName) { mName = aName; }
/** Label of the node for visualzation purposes. Default the same as
the name. */
- virtual QString label() const;
+ virtual TQString label() const;
/** URL of the node for visualization purposes. */
- virtual QString prettyURL() const = 0;
+ virtual TQString prettyURL() const = 0;
/** ID of the node */
uint id() const;
void setId( uint id ) { mId = id; }
protected:
- QString mName;
+ TQString mName;
KMFolderDir *mParent;
bool mDir;
uint mId;
};
-typedef QPtrList<KMFolderNode> KMFolderNodeList;
+typedef TQPtrList<KMFolderNode> KMFolderNodeList;
#endif /*kmfoldernode_h*/