diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 15:07:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-20 22:41:06 +0900 |
commit | efa55080160c7b88c4052c2567439c324f646614 (patch) | |
tree | 6f894bc54817f27de8bca8d9d412dcfa3d5c8c88 /libkpimexchange/core | |
parent | fd4746cdc3b8d6aafd50a5d7fa009caa8c05b85c (diff) | |
download | tdepim-efa55080160c7b88c4052c2567439c324f646614.tar.gz tdepim-efa55080160c7b88c4052c2567439c324f646614.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit cd4b0ac22608120ad003f575a1640e1ddc7703df)
Diffstat (limited to 'libkpimexchange/core')
-rw-r--r-- | libkpimexchange/core/exchangeaccount.h | 2 | ||||
-rw-r--r-- | libkpimexchange/core/exchangeclient.h | 2 | ||||
-rw-r--r-- | libkpimexchange/core/exchangedelete.h | 2 | ||||
-rw-r--r-- | libkpimexchange/core/exchangedownload.h | 2 | ||||
-rw-r--r-- | libkpimexchange/core/exchangemonitor.h | 2 | ||||
-rw-r--r-- | libkpimexchange/core/exchangeprogress.h | 2 | ||||
-rw-r--r-- | libkpimexchange/core/exchangeupload.h | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/libkpimexchange/core/exchangeaccount.h b/libkpimexchange/core/exchangeaccount.h index 9cd0f576c..032594be4 100644 --- a/libkpimexchange/core/exchangeaccount.h +++ b/libkpimexchange/core/exchangeaccount.h @@ -34,7 +34,7 @@ namespace KPIM { class KDE_EXPORT ExchangeAccount : public TQObject { - Q_OBJECT + TQ_OBJECT public: ExchangeAccount( const TQString &host, const TQString &port, diff --git a/libkpimexchange/core/exchangeclient.h b/libkpimexchange/core/exchangeclient.h index 0feab87e3..b1a2cbc77 100644 --- a/libkpimexchange/core/exchangeclient.h +++ b/libkpimexchange/core/exchangeclient.h @@ -46,7 +46,7 @@ class ExchangeDelete; //class ExchangeMonitor; class KDE_EXPORT ExchangeClient : public TQObject { - Q_OBJECT + TQ_OBJECT public: ExchangeClient( ExchangeAccount* account, const TQString& mTimeZoneId=TQString() ); diff --git a/libkpimexchange/core/exchangedelete.h b/libkpimexchange/core/exchangedelete.h index f8d8d1026..eb8328923 100644 --- a/libkpimexchange/core/exchangedelete.h +++ b/libkpimexchange/core/exchangedelete.h @@ -34,7 +34,7 @@ namespace KPIM { class ExchangeAccount; class KDE_EXPORT ExchangeDelete : public TQObject { - Q_OBJECT + TQ_OBJECT public: ExchangeDelete( KCal::Event* event, ExchangeAccount* account, TQWidget* window=0 ); diff --git a/libkpimexchange/core/exchangedownload.h b/libkpimexchange/core/exchangedownload.h index 931d53bfe..f0b1dcdd8 100644 --- a/libkpimexchange/core/exchangedownload.h +++ b/libkpimexchange/core/exchangedownload.h @@ -36,7 +36,7 @@ class ExchangeProgress; class ExchangeAccount; class ExchangeDownload : public TQObject { - Q_OBJECT + TQ_OBJECT public: ExchangeDownload( ExchangeAccount* account, TQWidget* window=0 ); diff --git a/libkpimexchange/core/exchangemonitor.h b/libkpimexchange/core/exchangemonitor.h index 3ba96a39b..d32b595c4 100644 --- a/libkpimexchange/core/exchangemonitor.h +++ b/libkpimexchange/core/exchangemonitor.h @@ -40,7 +40,7 @@ namespace KPIM { class ExchangeAccount; class ExchangeMonitor : public TQObject { - Q_OBJECT + TQ_OBJECT public: typedef long ID; diff --git a/libkpimexchange/core/exchangeprogress.h b/libkpimexchange/core/exchangeprogress.h index 4d29c24c5..078724495 100644 --- a/libkpimexchange/core/exchangeprogress.h +++ b/libkpimexchange/core/exchangeprogress.h @@ -28,7 +28,7 @@ namespace KPIM { class ExchangeProgress : public KProgressDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/libkpimexchange/core/exchangeupload.h b/libkpimexchange/core/exchangeupload.h index bbc5b8cf2..255d9c03c 100644 --- a/libkpimexchange/core/exchangeupload.h +++ b/libkpimexchange/core/exchangeupload.h @@ -34,7 +34,7 @@ namespace KPIM { class ExchangeAccount; class KDE_EXPORT ExchangeUpload : public TQObject { - Q_OBJECT + TQ_OBJECT public: ExchangeUpload( KCal::Event* event, ExchangeAccount* account, const TQString& timeZoneId, TQWidget* window=0 ); |