diff options
Diffstat (limited to 'kmail/listjob.h')
-rw-r--r-- | kmail/listjob.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/listjob.h b/kmail/listjob.h index 75213f5ce..f1adcba61 100644 --- a/kmail/listjob.h +++ b/kmail/listjob.h @@ -66,7 +66,7 @@ public: * @param item a parent ProgressItem */ ListJob( ImapAccountBase* account, ImapAccountBase::ListType type, - FolderStorage* storage = 0, const QString& path = QString::null, + FolderStorage* storage = 0, const TQString& path = TQString::null, bool complete = false, KPIM::ProgressItem* item = 0 ); virtual ~ListJob(); @@ -88,7 +88,7 @@ public: virtual void execute(); /** Path */ - void setPath( const QString& path ) { mPath = path; } + void setPath( const TQString& path ) { mPath = path; } /** Storage */ void setStorage( FolderStorage* st ) { mStorage = st; } @@ -101,7 +101,7 @@ public: mParentProgressItem = it; } /** Set the namespace for this listing */ - void setNamespace( const QString& ns ) { mNamespace = ns; } + void setNamespace( const TQString& ns ) { mNamespace = ns; } protected slots: /** @@ -118,14 +118,14 @@ protected slots: /** * Called from the account when a connection was established */ - void slotConnectionResult( int errorCode, const QString& errorMsg ); + void slotConnectionResult( int errorCode, const TQString& errorMsg ); signals: /** * Emitted when new folders have been received */ - void receivedFolders( const QStringList&, const QStringList&, - const QStringList&, const QStringList&, const ImapAccountBase::jobData& ); + void receivedFolders( const TQStringList&, const TQStringList&, + const TQStringList&, const TQStringList&, const ImapAccountBase::jobData& ); protected: FolderStorage* mStorage; @@ -133,11 +133,11 @@ protected: ImapAccountBase::ListType mType; bool mComplete; bool mHonorLocalSubscription; - QString mPath; - QStringList mSubfolderNames, mSubfolderPaths, + TQString mPath; + TQStringList mSubfolderNames, mSubfolderPaths, mSubfolderMimeTypes, mSubfolderAttributes; KPIM::ProgressItem* mParentProgressItem; - QString mNamespace; + TQString mNamespace; }; } // namespace |