diff options
Diffstat (limited to 'qtinterface/tqobject.h')
-rw-r--r-- | qtinterface/tqobject.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qtinterface/tqobject.h b/qtinterface/tqobject.h index ca133ee..192e38a 100644 --- a/qtinterface/tqobject.h +++ b/qtinterface/tqobject.h @@ -35,17 +35,18 @@ class TQObjectList; class TQObject : public QObject { - Q_OBJECT +// Q_OBJECT public: - inline TQObject( QObject *tqparent=0, const char *name=0 ) : QObject ( tqparent, name ) {} + TQObject( QObject *tqparent=0, const char *name=0 ) : QObject ( tqparent, name ) {} + virtual ~TQObject(); const TQObjectList tqchildren() const; static const TQObjectList tqobjectTrees(); inline TQObject *tqparent() const { return TQT_TQOBJECT(parent()); } // Interoperability - static const TQObject& convertFromQObject( QObject& ql ); + static const TQObject& convertFromQObject( const QObject& qo ); }; // Interoperability |