diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:44:46 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:44:46 +0900 |
commit | 69a0dca363007499aeed87b10fc51c2b56daf3cf (patch) | |
tree | 2a71c4664551c6d3cf435044bdc336321d421998 | |
parent | 547b2874656d653198e68d2fb76d759f76e564ab (diff) | |
download | dbus-tqt-69a0dca363007499aeed87b10fc51c2b56daf3cf.tar.gz dbus-tqt-69a0dca363007499aeed87b10fc51c2b56daf3cf.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | connection.h | 2 | ||||
-rw-r--r-- | dbus-qt.h | 4 | ||||
-rw-r--r-- | integrator.h | 4 | ||||
-rw-r--r-- | server.h | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/connection.h b/connection.h index 0d9770f..95134ae 100644 --- a/connection.h +++ b/connection.h @@ -36,7 +36,7 @@ namespace DBusQt { class Connection : public TQObject { - Q_OBJECT + TQ_OBJECT public: Connection( TQObject *parent =0 ); @@ -29,7 +29,7 @@ * Two approaches - one presented below a DBusQtConnection * object which is a TQt wrapper around DBusConnection class DBusQtConnection : public TQObject { - Q_OBJECT + TQ_OBJECT public: DBusQtConnection( const char *address=0, TQObject *parent=0, @@ -55,7 +55,7 @@ private: * * Second approach is to have a static TQt dispatcher like: class DBusQtNotifier : public TQObject { - Q_OBJECT + TQ_OBJECT public: static DBusQtNotifier* dbus_qt_notifier(); diff --git a/integrator.h b/integrator.h index fe35094..e67eb9d 100644 --- a/integrator.h +++ b/integrator.h @@ -41,7 +41,7 @@ namespace DBusQt class Timeout : public TQObject { - Q_OBJECT + TQ_OBJECT public: Timeout( TQObject *parent, DBusTimeout *t ); @@ -58,7 +58,7 @@ namespace DBusQt class Integrator : public TQObject { - Q_OBJECT + TQ_OBJECT public: Integrator( DBusConnection *connection, TQObject *parent ); @@ -31,7 +31,7 @@ namespace DBusQt class Connection; class Server : public TQObject { - Q_OBJECT + TQ_OBJECT public: Server( const TQString& addr = TQString(), TQObject *parent=0 ); |