diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kmail/subscriptiondialog.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 */ |