diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 15:36:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-20 19:44:38 +0900 |
commit | 8eb500c4e81229a9853e2f9bac4f39450083f3d7 (patch) | |
tree | 3c700b8550635d12c771ff0a1cb310a40a88e4b7 /tdeioslave | |
parent | a91e58bb975c56acdab25227a8b1c1c842dbdd34 (diff) | |
download | tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.tar.gz tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeioslave')
-rw-r--r-- | tdeioslave/file/file.h | 2 | ||||
-rw-r--r-- | tdeioslave/http/http.h | 2 | ||||
-rw-r--r-- | tdeioslave/http/kcookiejar/kcookieserver.h | 2 | ||||
-rw-r--r-- | tdeioslave/http/kcookiejar/kcookiewin.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/tdeioslave/file/file.h b/tdeioslave/file/file.h index 226e0a428..04a6ed225 100644 --- a/tdeioslave/file/file.h +++ b/tdeioslave/file/file.h @@ -42,7 +42,7 @@ class FileProtocol : public TQObject, public TDEIO::SlaveBase { - Q_OBJECT + TQ_OBJECT public: FileProtocol( const TQCString &pool, const TQCString &app); virtual ~FileProtocol() { } diff --git a/tdeioslave/http/http.h b/tdeioslave/http/http.h index aacdf1d47..51ec5b232 100644 --- a/tdeioslave/http/http.h +++ b/tdeioslave/http/http.h @@ -48,7 +48,7 @@ namespace TDEIO { class HTTPProtocol : public TQObject, public TDEIO::TCPSlaveBase { - Q_OBJECT + TQ_OBJECT public: HTTPProtocol( const TQCString &protocol, const TQCString &pool, const TQCString &app ); diff --git a/tdeioslave/http/kcookiejar/kcookieserver.h b/tdeioslave/http/kcookiejar/kcookieserver.h index 2cbb9ccf1..4603808e0 100644 --- a/tdeioslave/http/kcookiejar/kcookieserver.h +++ b/tdeioslave/http/kcookiejar/kcookieserver.h @@ -38,7 +38,7 @@ class TDEConfig; class KCookieServer : public KDEDModule { - Q_OBJECT + TQ_OBJECT K_DCOP public: KCookieServer(const TQCString &); diff --git a/tdeioslave/http/kcookiejar/kcookiewin.h b/tdeioslave/http/kcookiejar/kcookiewin.h index d739732dc..ddf744019 100644 --- a/tdeioslave/http/kcookiejar/kcookiewin.h +++ b/tdeioslave/http/kcookiejar/kcookiewin.h @@ -39,7 +39,7 @@ class KURLLabel; class KCookieDetail : public TQGroupBox { - Q_OBJECT + TQ_OBJECT public : KCookieDetail( KHttpCookieList cookieList, int cookieCount, TQWidget *parent=0, @@ -63,7 +63,7 @@ private slots: class KCookieWin : public KDialog { - Q_OBJECT + TQ_OBJECT public : KCookieWin( TQWidget *parent, KHttpCookieList cookieList, int defaultButton=0, |