diff options
Diffstat (limited to 'kmail/subscriptiondialog.h')
-rw-r--r-- | kmail/subscriptiondialog.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/kmail/subscriptiondialog.h b/kmail/subscriptiondialog.h index 011a529bd..1d5a01481 100644 --- a/kmail/subscriptiondialog.h +++ b/kmail/subscriptiondialog.h @@ -32,7 +32,7 @@ #ifndef __SUBSCRIPTIONDIALOG #define __SUBSCRIPTIONDIALOG -#include <qdict.h> +#include <tqdict.h> #include <ksubscription.h> #include "imapaccountbase.h" @@ -49,10 +49,10 @@ namespace KMail { Q_OBJECT public: - SubscriptionDialogBase( QWidget *parent, - const QString &caption, + SubscriptionDialogBase( TQWidget *parent, + const TQString &caption, KAccount* acct, - QString startPath = QString::null ); + TQString startPath = TQString::null ); virtual ~SubscriptionDialogBase() {} void show(); @@ -61,7 +61,7 @@ namespace KMail { /** * Find the parent item */ - void findParentItem ( QString &name, QString &path, QString &compare, + void findParentItem ( TQString &name, TQString &path, TQString &compare, GroupItem **parent, GroupItem **oldItem ); /** @@ -80,8 +80,8 @@ namespace KMail { /** * get the listing from the imap-server */ - void slotListDirectory(const QStringList&, const QStringList&, - const QStringList&, const QStringList&, const ImapAccountBase::jobData &); + void slotListDirectory(const TQStringList&, const TQStringList&, + const TQStringList&, const TQStringList&, const ImapAccountBase::jobData &); /** * called by Ok-button, saves the changes @@ -91,7 +91,7 @@ namespace KMail { /** * Called from the account when a connection was established */ - void slotConnectionResult( int errorCode, const QString& errorMsg ); + void slotConnectionResult( int errorCode, const TQString& errorMsg ); protected slots: /** @@ -112,16 +112,16 @@ namespace KMail { * folders. */ void createListViewItem( int i ); - QString mDelimiter; - QStringList mFolderNames, mFolderPaths, + TQString mDelimiter; + TQStringList mFolderNames, mFolderPaths, mFolderMimeTypes, mFolderAttributes; ImapAccountBase::jobData mJobData; uint mCount; - QDict<GroupItem> mItemDict; - QString mStartPath; + TQDict<GroupItem> mItemDict; + TQString mStartPath; bool mSubscribed, mForceSubscriptionEnable; - QStringList mPrefixList; - QString mCurrentNamespace; + TQStringList mPrefixList; + TQString mCurrentNamespace; }; class SubscriptionDialog : public SubscriptionDialogBase @@ -129,10 +129,10 @@ namespace KMail { Q_OBJECT public: - SubscriptionDialog( QWidget *parent, - const QString &caption, + SubscriptionDialog( TQWidget *parent, + const TQString &caption, KAccount* acct, - QString startPath = QString::null ); + TQString startPath = TQString::null ); virtual ~SubscriptionDialog(); protected: /** reimpl */ |