summaryrefslogtreecommitdiffstats
path: root/kmailcvt/filter_pmail.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'kmailcvt/filter_pmail.hxx')
-rw-r--r--kmailcvt/filter_pmail.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/kmailcvt/filter_pmail.hxx b/kmailcvt/filter_pmail.hxx
index 9db76d11..664fdcc1 100644
--- a/kmailcvt/filter_pmail.hxx
+++ b/kmailcvt/filter_pmail.hxx
@@ -18,8 +18,8 @@
#ifndef FILTER_PMAIL_HXX
#define FILTER_PMAIL_HXX
-#include <qdir.h>
-#include <qvaluelist.h>
+#include <tqdir.h>
+#include <tqvaluelist.h>
#include "filters.hxx"
@@ -33,21 +33,21 @@ public:
protected:
/** this looks for all files with the filemask 'mask' and calls the 'workFunc' on each of them */
- void processFiles(const QString& mask, void(FilterPMail::* workFunc)(const QString&) );
+ void processFiles(const TQString& mask, void(FilterPMail::* workFunc)(const TQString&) );
/** this function imports one *.CNM message */
- void importNewMessage(const QString& file);
+ void importNewMessage(const TQString& file);
/** this function imports one mail folder file (*.PMM) */
- void importMailFolder(const QString& file);
+ void importMailFolder(const TQString& file);
/** imports a 'unix' format mail folder (*.MBX) */
- void importUnixMailFolder(const QString& file);
+ void importUnixMailFolder(const TQString& file);
/** this function recreate the folder structure */
bool parseFolderMatrix();
/** this function parse the folder structure */
- QString getFolderName(QString ID);
+ TQString getFolderName(TQString ID);
private:
/** the working directory */
- QDir dir;
+ TQDir dir;
/** pointer to the info */
FilterInfo * inf;
@@ -60,12 +60,12 @@ private:
4. "ID:name" of parent folder
5. name of folder/archiv
*/
- QValueList<FolderStructure> folderMatrix;
- typedef QValueList<FolderStructure>::Iterator FolderStructureIterator;
+ TQValueList<FolderStructure> folderMatrix;
+ typedef TQValueList<FolderStructure>::Iterator FolderStructureIterator;
bool folderParsed;
- QString chosenDir;
+ TQString chosenDir;
/** which file (of totalFiles) is now in the work? */
int currentFile;