summaryrefslogtreecommitdiffstats
path: root/qtinterface/tqobject.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-04 01:44:13 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-04 01:44:13 +0000
commitc9dc3907763cbf0b0e6164d793291bd2659f1534 (patch)
tree3359387715ee5e306451f1bcb74b900b608c9946 /qtinterface/tqobject.cpp
parent4c3c7eaa2d225ecc0c16644f1a23e848bf539164 (diff)
downloadtqtinterface-c9dc3907763cbf0b0e6164d793291bd2659f1534.tar.gz
tqtinterface-c9dc3907763cbf0b0e6164d793291bd2659f1534.zip
Now compiles kdelibs/dcop folder properly...
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1158880 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtinterface/tqobject.cpp')
-rw-r--r--qtinterface/tqobject.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/qtinterface/tqobject.cpp b/qtinterface/tqobject.cpp
index 8fb45d9..22df8ac 100644
--- a/qtinterface/tqobject.cpp
+++ b/qtinterface/tqobject.cpp
@@ -40,8 +40,15 @@ static const QObjectList *objectTrees() {
const QObjectList *QObject::ptrchildren() const {
QObjectList ql;
+ QObjectList *qlr;
ql = this->children();
- return &ql;
+ qlr = &ql;
+ return qlr;
+}
+
+bool QObject::qt_invoke(int slot, QUObject* uo) {
+ QMetaMethod method = uo->metaObject()->method(slot);
+ return method.invoke(this, Qt::DirectConnection);
}
#endif \ No newline at end of file