Fix yet another FTBFS

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1210732 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 14 years ago
parent df2e39d7a8
commit eaaed3012b

@ -26,6 +26,9 @@ Boston, MA 02110-1301, USA.
#include <qobjectlist.h>
#include "tqobjectlist.h"
TQObject::~TQObject() {
}
const TQObjectList TQObject::tqchildren() const
{
// return *children();

@ -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

Loading…
Cancel
Save