summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-01 23:42:45 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-01 23:42:45 +0000
commiteaaed3012bcb118caeafd954df2d14b6b12aff17 (patch)
treebc45297b853b0d37622f2618b04d7387a2111730
parentdf2e39d7a8ad016787dfe560842828580c109d1d (diff)
downloadtqtinterface-eaaed301.tar.gz
tqtinterface-eaaed301.zip
Fix yet another FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1210732 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--qtinterface/tqobject.cpp3
-rw-r--r--qtinterface/tqobject.h7
2 files changed, 7 insertions, 3 deletions
diff --git a/qtinterface/tqobject.cpp b/qtinterface/tqobject.cpp
index 351e799..6f7b71e 100644
--- a/qtinterface/tqobject.cpp
+++ b/qtinterface/tqobject.cpp
@@ -26,6 +26,9 @@ Boston, MA 02110-1301, USA.
#include <qobjectlist.h>
#include "tqobjectlist.h"
+TQObject::~TQObject() {
+}
+
const TQObjectList TQObject::tqchildren() const
{
// return *children();
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