Replace Q_OBJECT with TQ_OBJECT

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/2/head
Michele Calgaro 9 months ago
parent 547b287465
commit 69a0dca363
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -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();

@ -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 );

Loading…
Cancel
Save