summaryrefslogtreecommitdiffstats
path: root/kmail/kmfoldercombobox.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmfoldercombobox.h')
-rw-r--r--kmail/kmfoldercombobox.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/kmfoldercombobox.h b/kmail/kmfoldercombobox.h
index 1b46c104..38268e75 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;