summaryrefslogtreecommitdiffstats
path: root/kmailcvt/filter_pmail.hxx
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kmailcvt/filter_pmail.hxx
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-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 '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;