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/kmfoldercombobox.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/kmfoldercombobox.h')
-rw-r--r-- | kmail/kmfoldercombobox.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/kmfoldercombobox.h b/kmail/kmfoldercombobox.h index 1b46c104f..38268e752 100644 --- a/kmail/kmfoldercombobox.h +++ b/kmail/kmfoldercombobox.h @@ -1,5 +1,5 @@ /* kmail folder-list combo-box - * A specialized QComboBox widget that refreshes its contents when + * A specialized TQComboBox widget that refreshes its contents when * the folder list changes. */ @@ -8,16 +8,16 @@ #include "kmfolder.h" -#include <qcombobox.h> -#include <qguardedptr.h> +#include <tqcombobox.h> +#include <tqguardedptr.h> class KMFolderComboBox : public QComboBox { Q_OBJECT public: - KMFolderComboBox( QWidget *parent = 0, char *name = 0 ); - KMFolderComboBox( bool rw, QWidget *parent = 0, char *name = 0 ); + KMFolderComboBox( TQWidget *parent = 0, char *name = 0 ); + KMFolderComboBox( bool rw, TQWidget *parent = 0, char *name = 0 ); /** Select whether the outbox folder is shown. Default is yes. */ void showOutboxFolder(bool shown); @@ -26,7 +26,7 @@ public: void showImapFolders(bool shown); void setFolder( KMFolder *aFolder ); - void setFolder( const QString &idString ); + void setFolder( const TQString &idString ); KMFolder *getFolder(); public slots: @@ -38,11 +38,11 @@ private slots: private: /** Create folder list using the folder manager. */ - void createFolderList(QStringList *names, - QValueList<QGuardedPtr<KMFolder> > *folders); + void createFolderList(TQStringList *names, + TQValueList<TQGuardedPtr<KMFolder> > *folders); void init(); - QGuardedPtr<KMFolder> mFolder; + TQGuardedPtr<KMFolder> mFolder; bool mOutboxShown; bool mImapShown; int mSpecialIdx; |