diff options
Diffstat (limited to 'kmail/kmfolderseldlg.h')
-rw-r--r-- | kmail/kmfolderseldlg.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kmail/kmfolderseldlg.h b/kmail/kmfolderseldlg.h index 3adef4159..119ceff78 100644 --- a/kmail/kmfolderseldlg.h +++ b/kmail/kmfolderseldlg.h @@ -20,34 +20,34 @@ namespace KMail { Q_OBJECT public: - SimpleFolderTree( QWidget * parent, KMFolderTree * folderTree, - const QString & preSelection, bool mustBeReadWrite ); + SimpleFolderTree( TQWidget * parent, KMFolderTree * folderTree, + const TQString & preSelection, bool mustBeReadWrite ); /** Reload the tree and select what folders to show and what not */ void reload( bool mustBeReadWrite, bool showOutbox, bool showImapFolders, - const QString& preSelection = QString::null ); + const TQString& preSelection = TQString::null ); /** Return the current folder */ const KMFolder * folder() const; /** Set the current folder */ void setFolder( KMFolder* ); - void setFolder( const QString& idString ); + void setFolder( const TQString& idString ); /** Apply the given filter. */ - void applyFilter( const QString& filter ); + void applyFilter( const TQString& filter ); public slots: void addChildFolder(); protected slots: - void slotContextMenuRequested( QListViewItem *, const QPoint & ); + void slotContextMenuRequested( TQListViewItem *, const TQPoint & ); virtual void recolorRows(); protected: /** Read color options and set palette. */ virtual void readColorConfig(void); - virtual void keyPressEvent( QKeyEvent *e ); + virtual void keyPressEvent( TQKeyEvent *e ); /** Folder and path column IDs. */ friend class KMFolderSelDlg; @@ -56,7 +56,7 @@ namespace KMail { private: KMFolderTree* mFolderTree; - QString mFilter; + TQString mFilter; bool mLastMustBeReadWrite; bool mLastShowOutbox; bool mLastShowImapFolders; @@ -76,7 +76,7 @@ namespace KMail { * @param useGlobalSettings if true, the current folder is read and * written to GlobalSettings */ - KMFolderSelDlg( KMMainWidget * parent, const QString& caption, + KMFolderSelDlg( KMMainWidget * parent, const TQString& caption, bool mustBeReadWrite, bool useGlobalSettings = true ); /** * Constructor with separate KMFolderTree @@ -84,8 +84,8 @@ namespace KMail { * @param useGlobalSettings if true, the current folder is read and * written to GlobalSettings */ - KMFolderSelDlg( QWidget * parent, KMFolderTree * tree, - const QString& caption, bool mustBeReadWrite, + KMFolderSelDlg( TQWidget * parent, KMFolderTree * tree, + const TQString& caption, bool mustBeReadWrite, bool useGlobalSettings = true ); virtual ~KMFolderSelDlg(); |