summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-05 17:12:16 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-05 17:12:16 +0000
commit9647cd2e4ceff71f939156efb5d5877aa93adbf0 (patch)
treef05cc05fb9d0c7cb17090d23937563cd6eaf7e92
parente7d09d4e68b28862482e5e6c2043e770c33f71c6 (diff)
downloaddbus-tqt-9647cd2e.tar.gz
dbus-tqt-9647cd2e.zip
Fix missing Q_OBJECT macros
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-tqt@1245170 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--dbus-qt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/dbus-qt.h b/dbus-qt.h
index 6b05f67..8723ad9 100644
--- a/dbus-qt.h
+++ b/dbus-qt.h
@@ -30,6 +30,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 *tqparent=0,
@@ -55,6 +56,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();