summaryrefslogtreecommitdiffstats
path: root/kmailcvt
diff options
context:
space:
mode:
Diffstat (limited to 'kmailcvt')
-rw-r--r--kmailcvt/README12
-rw-r--r--kmailcvt/filter_sylpheed.cpp2
-rw-r--r--kmailcvt/kimportpage.h2
-rw-r--r--kmailcvt/kmailcvt.h2
-rw-r--r--kmailcvt/kselfilterpage.cpp2
-rw-r--r--kmailcvt/kselfilterpage.h2
6 files changed, 11 insertions, 11 deletions
diff --git a/kmailcvt/README b/kmailcvt/README
index d1105fe4..1f778afe 100644
--- a/kmailcvt/README
+++ b/kmailcvt/README
@@ -16,14 +16,14 @@ your tdepim source directory.
In the import method of your filter you are passed a FilterInfo object. This has
the following methods that you may want to use:
- void setFrom( const QString& from ); // Set to file importing from
- void setTo( const QString& to ); // Set to folder importing into
- void setCurrent( const QString& current ); // What we are doing
+ void setFrom( const TQString& from ); // Set to file importing from
+ void setTo( const TQString& to ); // Set to folder importing into
+ void setCurrent( const TQString& current ); // What we are doing
void setCurrent( int percent = 0 ); // Set percentage of current file
void setOverall( int percent = 0 ); // Set overall percentage
- void addLog( const QString& log ); // Add a message for the user to see
- void alert( const QString& message ); // Tell user something has gone wrong
- QWidget *parent(); // The parent widget
+ void addLog( const TQString& log ); // Add a message for the user to see
+ void alert( const TQString& message ); // Tell user something has gone wrong
+ TQWidget *parent(); // The parent widget
bool removeDupMsg; // true, if user selected 'remove duplicated messages'
diff --git a/kmailcvt/filter_sylpheed.cpp b/kmailcvt/filter_sylpheed.cpp
index e8f4a66a..bf8427c2 100644
--- a/kmailcvt/filter_sylpheed.cpp
+++ b/kmailcvt/filter_sylpheed.cpp
@@ -187,7 +187,7 @@ void FilterSylpheed::readMarkFile( FilterInfo *info, const TQString &path, TQDic
TQDataStream stream(&file);
- if (Q_BYTE_ORDER == Q_LITTLE_ENDIAN)
+ if (TQ_BYTE_ORDER == TQ_LITTLE_ENDIAN)
stream.setByteOrder(TQDataStream::LittleEndian);
diff --git a/kmailcvt/kimportpage.h b/kmailcvt/kimportpage.h
index 9541b5d4..1b9fcdc5 100644
--- a/kmailcvt/kimportpage.h
+++ b/kmailcvt/kimportpage.h
@@ -21,7 +21,7 @@
#include "kimportpagedlg.h"
class KImportPage : public KImportPageDlg {
- Q_OBJECT
+ TQ_OBJECT
public:
KImportPage(TQWidget *parent=0, const char *name=0);
diff --git a/kmailcvt/kmailcvt.h b/kmailcvt/kmailcvt.h
index 7253d5ac..0f6704b0 100644
--- a/kmailcvt/kmailcvt.h
+++ b/kmailcvt/kmailcvt.h
@@ -26,7 +26,7 @@
/** KMailCVT is the base class of the project */
class KMailCVT : public KWizard {
- Q_OBJECT
+ TQ_OBJECT
public:
KMailCVT(TQWidget* parent=0, const char *name=0);
diff --git a/kmailcvt/kselfilterpage.cpp b/kmailcvt/kselfilterpage.cpp
index 118124f7..ef3d9577 100644
--- a/kmailcvt/kselfilterpage.cpp
+++ b/kmailcvt/kselfilterpage.cpp
@@ -43,7 +43,7 @@ KSelFilterPage::KSelFilterPage(TQWidget *parent, const char *name ) : KSelFilter
mIntroSidebar->setPixmap(locate("data", "kmailcvt/pics/step1.png"));
mFilterList.setAutoDelete( TRUE );
- connect(mFilterCombo, TQT_SIGNAL(activated(int)), TQT_SLOT(filterSelected(int)));
+ connect(mFilterCombo, TQ_SIGNAL(activated(int)), TQ_SLOT(filterSelected(int)));
// Add new filters below. If this annoys you, please rewrite the stuff to use a factory.
// The former approach was overengineered and only worked around problems in the design
diff --git a/kmailcvt/kselfilterpage.h b/kmailcvt/kselfilterpage.h
index 127dc816..1dc208e6 100644
--- a/kmailcvt/kselfilterpage.h
+++ b/kmailcvt/kselfilterpage.h
@@ -24,7 +24,7 @@ class Filter;
template <class T> class TQPtrList;
class KSelFilterPage : public KSelFilterPageDlg {
- Q_OBJECT
+ TQ_OBJECT
public:
KSelFilterPage(TQWidget *parent=0, const char *name=0);