summaryrefslogtreecommitdiffstats
path: root/qtinterface/tqt4/Qt/qobjectdefs.h
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/tqt4/Qt/qobjectdefs.h
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/tqt4/Qt/qobjectdefs.h')
-rw-r--r--qtinterface/tqt4/Qt/qobjectdefs.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/qtinterface/tqt4/Qt/qobjectdefs.h b/qtinterface/tqt4/Qt/qobjectdefs.h
index 32f9b80..3a50a14 100644
--- a/qtinterface/tqt4/Qt/qobjectdefs.h
+++ b/qtinterface/tqt4/Qt/qobjectdefs.h
@@ -450,8 +450,16 @@ struct Q_CORE_EXPORT QMetaObject
int numSignals( bool super = FALSE ) const;
const QMetaMethod *slot( int index, bool super = FALSE ) const;
const QMetaMethod *signal( int index, bool super = FALSE ) const;
- QStringList slotNames( bool super = FALSE ) const;
- QStringList signalNames( bool super = FALSE ) const;
+ TQT_QT_STRING_LIST_TYPE slotNames( bool super = FALSE ) const;
+ TQT_QT_STRING_LIST_TYPE signalNames( bool super = FALSE ) const;
+ int findSlot( const char *, bool super = FALSE ) const;
+ int findSignal( const char *, bool super = FALSE ) const;
+#ifndef QT_NO_PROPERTIES
+ int numProperties( bool super = FALSE ) const;
+ const QMetaProperty *property( int index, bool super ) const;
+ TQT_QT_STRING_LIST_TYPE propertyNames( bool super = FALSE ) const;
+ int findProperty( const char *name, bool super ) const;
+#endif
struct { // private data
const QMetaObject *superdata;