diff options
Diffstat (limited to 'knode/knfolder.h')
-rw-r--r-- | knode/knfolder.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/knode/knfolder.h b/knode/knfolder.h index 0e2bfafb9..0be6dafde 100644 --- a/knode/knfolder.h +++ b/knode/knfolder.h @@ -28,8 +28,8 @@ class KNFolder : public KNArticleCollection { public: KNFolder(); - KNFolder(int id, const QString &name, KNFolder *parent=0); - KNFolder(int id, const QString &name, const QString &prefix, KNFolder *parent=0); + KNFolder(int id, const TQString &name, KNFolder *parent=0); + KNFolder(int id, const TQString &name, const TQString &prefix, KNFolder *parent=0); ~KNFolder(); //type @@ -47,15 +47,15 @@ class KNFolder : public KNArticleCollection { bool wasOpen()const { return w_asOpen; } //info - QString path(); - bool readInfo(const QString &confPath); + TQString path(); + bool readInfo(const TQString &confPath); bool readInfo(); void saveInfo(); //article access KNLocalArticle* at(int i) { return static_cast<KNLocalArticle*>(KNArticleCollection::at(i)); } KNLocalArticle* byId(int id) { return static_cast<KNLocalArticle*>(KNArticleCollection::byId(id)); } - KNLocalArticle* byMessageId(const QCString &mid) + KNLocalArticle* byMessageId(const TQCString &mid) { return static_cast<KNLocalArticle*>(KNArticleCollection::byMessageId(mid)); } //parent @@ -80,8 +80,8 @@ class KNFolder : public KNArticleCollection { bool i_ndexDirty; // do we need to sync? bool w_asOpen; // was this folder open in the listview on the last shutdown? KNFile m_boxFile; - QFile i_ndexFile; - QString i_nfoPath; + TQFile i_ndexFile; + TQString i_nfoPath; /* helper-class: stores index-data of an article */ class DynData { |