diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:02:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:02:11 -0600 |
commit | 884c85c306b64ff28634762d311c6d834b85a9ca (patch) | |
tree | 4191fe16ae2b568f70dd75d59c11787fa79a1068 /dbus-qt.h | |
parent | 8e81e6dc42dd89e9d44900fe59f7dc50c9aae3cf (diff) | |
download | dbus-tqt-884c85c306b64ff28634762d311c6d834b85a9ca.tar.gz dbus-tqt-884c85c306b64ff28634762d311c6d834b85a9ca.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'dbus-qt.h')
-rw-r--r-- | dbus-qt.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,7 +31,7 @@ * 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, const char *name=0 ); @@ -57,7 +57,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(); void addConnection(DBusConnection* connection); |