summaryrefslogtreecommitdiffstats
path: root/kjsembed/qtbindings/qlistviewitem_imp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/qtbindings/qlistviewitem_imp.cpp')
-rw-r--r--kjsembed/qtbindings/qlistviewitem_imp.cpp256
1 files changed, 128 insertions, 128 deletions
diff --git a/kjsembed/qtbindings/qlistviewitem_imp.cpp b/kjsembed/qtbindings/qlistviewitem_imp.cpp
index b7e18820..13765e2b 100644
--- a/kjsembed/qtbindings/qlistviewitem_imp.cpp
+++ b/kjsembed/qtbindings/qlistviewitem_imp.cpp
@@ -1,10 +1,10 @@
-#include <qcstring.h>
-#include <qpalette.h>
-#include <qpixmap.h>
-#include <qfont.h>
+#include <tqcstring.h>
+#include <tqpalette.h>
+#include <tqpixmap.h>
+#include <tqfont.h>
#include <kjs/object.h>
@@ -13,7 +13,7 @@
#include <kjsembed/jsopaqueproxy.h>
#include <kjsembed/jsbinding.h>
-#include <qlistview.h>
+#include <tqlistview.h>
#include "qlistviewitem_imp.h"
/**
@@ -31,17 +31,17 @@ namespace Bindings {
JSOpaqueProxy *prx = 0;
if ( arg0 ) {
- if ( arg0->typeName() == "QListViewItem" ) {
- QListViewItem * parent = arg0->toNative<QListViewItem>();
- prx = new JSOpaqueProxy( new QListViewItem( parent ), "QListViewItem" );
+ if ( arg0->typeName() == "TQListViewItem" ) {
+ TQListViewItem * parent = arg0->toNative<TQListViewItem>();
+ prx = new JSOpaqueProxy( new TQListViewItem( parent ), "TQListViewItem" );
} else {
return KJS::Object();
}
} else {
JSObjectProxy *arg0 = JSProxy::toObjectProxy( args[ 0 ].imp() );
if ( arg0 ) {
- QListView * parent = ( QListView * ) ( arg0->widget() );
- prx = new JSOpaqueProxy( new QListViewItem( parent ), "QListViewItem" );
+ TQListView * parent = ( TQListView * ) ( arg0->widget() );
+ prx = new JSOpaqueProxy( new TQListViewItem( parent ), "TQListViewItem" );
} else {
return KJS::Object();
}
@@ -80,7 +80,7 @@ void QListViewItemImp::addStaticBindings( KJS::ExecState *exec, KJS::Object &obj
};
int idx = 0;
- QCString lastName;
+ TQCString lastName;
while( methods[idx].name ) {
if ( lastName != methods[idx].name ) {
@@ -159,7 +159,7 @@ void QListViewItemImp::addBindings( KJS::ExecState *exec, KJS::Object &object )
};
int idx = 0;
- QCString lastName;
+ TQCString lastName;
while( methods[idx].name ) {
if ( lastName != methods[idx].name ) {
@@ -172,21 +172,21 @@ void QListViewItemImp::addBindings( KJS::ExecState *exec, KJS::Object &object )
}
/**
- * Extract a QListViewItem pointer from an Object.
+ * Extract a TQListViewItem pointer from an Object.
*/
-QListViewItem *QListViewItemImp::toQListViewItem( KJS::Object &self )
+TQListViewItem *QListViewItemImp::toQListViewItem( KJS::Object &self )
{
JSObjectProxy *ob = JSProxy::toObjectProxy( self.imp() );
if ( ob ) {
- QObject *obj = ob->object();
+ TQObject *obj = ob->object();
if ( obj )
- return dynamic_cast<QListViewItem *>( obj );
+ return dynamic_cast<TQListViewItem *>( obj );
}
JSOpaqueProxy *op = JSProxy::toOpaqueProxy( self.imp() );
if ( !op )
return 0;
- return op->toNative<QListViewItem>();
+ return op->toNative<TQListViewItem>();
}
/**
@@ -232,7 +232,7 @@ KJS::Object QListViewItemImp::construct( KJS::ExecState *exec, const KJS::List &
break;
}
- QString msg = i18n("QListViewItemCons has no constructor with id '%1'.").arg(id);
+ TQString msg = i18n("QListViewItemCons has no constructor with id '%1'.").arg(id);
return throwError(exec, msg,KJS::ReferenceError);
}
@@ -240,13 +240,13 @@ KJS::Object QListViewItemImp::construct( KJS::ExecState *exec, const KJS::List &
KJS::Object QListViewItemImp::QListViewItem_1( KJS::ExecState *exec, const KJS::List &args )
{
#if 0
- // Unsupported parameter QListView *
+ // Unsupported parameter TQListView *
return KJS::Value();
- QListView * arg0; // Dummy
+ TQListView * arg0; // Dummy
- // We should now create an object of type QListViewItemQListViewItem *ret = new QListViewItem(
+ // We should now create an object of type QListViewItemQListViewItem *ret = new TQListViewItem(
arg0 );
#endif
@@ -257,13 +257,13 @@ return KJS::Object();
KJS::Object QListViewItemImp::QListViewItem_2( KJS::ExecState *exec, const KJS::List &args )
{
#if 0
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
- // We should now create an object of type QListViewItemQListViewItem *ret = new QListViewItem(
+ // We should now create an object of type QListViewItemQListViewItem *ret = new TQListViewItem(
arg0 );
#endif
@@ -274,18 +274,18 @@ KJS::Object QListViewItemImp::QListViewItem_3( KJS::ExecState *exec, const KJS::
{
#if 0
- // Unsupported parameter QListView *
+ // Unsupported parameter TQListView *
return KJS::Value();
- QListView * arg0; // Dummy
+ TQListView * arg0; // Dummy
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg1; // Dummy
+ TQListViewItem * arg1; // Dummy
- // We should now create an object of type QListViewItemQListViewItem *ret = new QListViewItem(
+ // We should now create an object of type QListViewItemQListViewItem *ret = new TQListViewItem(
arg0,
arg1 );
@@ -297,18 +297,18 @@ KJS::Object QListViewItemImp::QListViewItem_4( KJS::ExecState *exec, const KJS::
{
#if 0
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg1; // Dummy
+ TQListViewItem * arg1; // Dummy
- // We should now create an object of type QListViewItemQListViewItem *ret = new QListViewItem(
+ // We should now create an object of type QListViewItemQListViewItem *ret = new TQListViewItem(
arg0,
arg1 );
@@ -321,29 +321,29 @@ KJS::Object QListViewItemImp::QListViewItem_5( KJS::ExecState *exec, const KJS::
{
#if 0
- // Unsupported parameter QListView *
+ // Unsupported parameter TQListView *
return KJS::Value();
- QListView * arg0; // Dummy
+ TQListView * arg0; // Dummy
- QString arg1 = extractQString(exec, args, 1);
+ TQString arg1 = extractQString(exec, args, 1);
- QString arg2 = extractQString(exec, args, 2);
+ TQString arg2 = extractQString(exec, args, 2);
- QString arg3 = extractQString(exec, args, 3);
+ TQString arg3 = extractQString(exec, args, 3);
- QString arg4 = extractQString(exec, args, 4);
+ TQString arg4 = extractQString(exec, args, 4);
- QString arg5 = extractQString(exec, args, 5);
+ TQString arg5 = extractQString(exec, args, 5);
- QString arg6 = extractQString(exec, args, 6);
+ TQString arg6 = extractQString(exec, args, 6);
- QString arg7 = extractQString(exec, args, 7);
+ TQString arg7 = extractQString(exec, args, 7);
- QString arg8 = extractQString(exec, args, 8);
+ TQString arg8 = extractQString(exec, args, 8);
- // We should now create an object of type QListViewItemQListViewItem *ret = new QListViewItem(
+ // We should now create an object of type QListViewItemQListViewItem *ret = new TQListViewItem(
arg0,
arg1,
@@ -363,29 +363,29 @@ KJS::Object QListViewItemImp::QListViewItem_6( KJS::ExecState *exec, const KJS::
{
#if 0
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
- QString arg1 = extractQString(exec, args, 1);
+ TQString arg1 = extractQString(exec, args, 1);
- QString arg2 = extractQString(exec, args, 2);
+ TQString arg2 = extractQString(exec, args, 2);
- QString arg3 = extractQString(exec, args, 3);
+ TQString arg3 = extractQString(exec, args, 3);
- QString arg4 = extractQString(exec, args, 4);
+ TQString arg4 = extractQString(exec, args, 4);
- QString arg5 = extractQString(exec, args, 5);
+ TQString arg5 = extractQString(exec, args, 5);
- QString arg6 = extractQString(exec, args, 6);
+ TQString arg6 = extractQString(exec, args, 6);
- QString arg7 = extractQString(exec, args, 7);
+ TQString arg7 = extractQString(exec, args, 7);
- QString arg8 = extractQString(exec, args, 8);
+ TQString arg8 = extractQString(exec, args, 8);
- // We should now create an object of type QListViewItemQListViewItem *ret = new QListViewItem(
+ // We should now create an object of type QListViewItemQListViewItem *ret = new TQListViewItem(
arg0,
arg1,
@@ -405,34 +405,34 @@ return KJS::Object();
KJS::Object QListViewItemImp::QListViewItem_7( KJS::ExecState *exec, const KJS::List &args )
{
#if 0
- // Unsupported parameter QListView *
+ // Unsupported parameter TQListView *
return KJS::Value();
- QListView * arg0; // Dummy
+ TQListView * arg0; // Dummy
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg1; // Dummy
+ TQListViewItem * arg1; // Dummy
- QString arg2 = extractQString(exec, args, 2);
+ TQString arg2 = extractQString(exec, args, 2);
- QString arg3 = extractQString(exec, args, 3);
+ TQString arg3 = extractQString(exec, args, 3);
- QString arg4 = extractQString(exec, args, 4);
+ TQString arg4 = extractQString(exec, args, 4);
- QString arg5 = extractQString(exec, args, 5);
+ TQString arg5 = extractQString(exec, args, 5);
- QString arg6 = extractQString(exec, args, 6);
+ TQString arg6 = extractQString(exec, args, 6);
- QString arg7 = extractQString(exec, args, 7);
+ TQString arg7 = extractQString(exec, args, 7);
- QString arg8 = extractQString(exec, args, 8);
+ TQString arg8 = extractQString(exec, args, 8);
- QString arg9 = extractQString(exec, args, 9);
+ TQString arg9 = extractQString(exec, args, 9);
- // We should now create an object of type QListViewItemQListViewItem *ret = new QListViewItem(
+ // We should now create an object of type QListViewItemQListViewItem *ret = new TQListViewItem(
arg0,
arg1,
@@ -452,34 +452,34 @@ return KJS::Object();
KJS::Object QListViewItemImp::QListViewItem_8( KJS::ExecState *exec, const KJS::List &args )
{
#if 0
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg1; // Dummy
+ TQListViewItem * arg1; // Dummy
- QString arg2 = extractQString(exec, args, 2);
+ TQString arg2 = extractQString(exec, args, 2);
- QString arg3 = extractQString(exec, args, 3);
+ TQString arg3 = extractQString(exec, args, 3);
- QString arg4 = extractQString(exec, args, 4);
+ TQString arg4 = extractQString(exec, args, 4);
- QString arg5 = extractQString(exec, args, 5);
+ TQString arg5 = extractQString(exec, args, 5);
- QString arg6 = extractQString(exec, args, 6);
+ TQString arg6 = extractQString(exec, args, 6);
- QString arg7 = extractQString(exec, args, 7);
+ TQString arg7 = extractQString(exec, args, 7);
- QString arg8 = extractQString(exec, args, 8);
+ TQString arg8 = extractQString(exec, args, 8);
- QString arg9 = extractQString(exec, args, 9);
+ TQString arg9 = extractQString(exec, args, 9);
- // We should now create an object of type QListViewItemQListViewItem *ret = new QListViewItem(
+ // We should now create an object of type QListViewItemQListViewItem *ret = new TQListViewItem(
arg0,
arg1,
@@ -722,7 +722,7 @@ KJS::Value QListViewItemImp::call( KJS::ExecState *exec, KJS::Object &self, cons
break;
}
- QString msg = i18n( "QListViewItemImp has no method with id '%1'." ).arg( id );
+ TQString msg = i18n( "QListViewItemImp has no method with id '%1'." ).arg( id );
return throwError(exec, msg,KJS::ReferenceError);
}
@@ -730,10 +730,10 @@ KJS::Value QListViewItemImp::call( KJS::ExecState *exec, KJS::Object &self, cons
KJS::Value QListViewItemImp::insertItem_10( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
instance->insertItem(
arg0 );
@@ -744,10 +744,10 @@ KJS::Value QListViewItemImp::insertItem_10( KJS::ExecState *exec, KJS::Object &o
KJS::Value QListViewItemImp::takeItem_11( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
instance->takeItem(
arg0 );
@@ -758,10 +758,10 @@ KJS::Value QListViewItemImp::takeItem_11( KJS::ExecState *exec, KJS::Object &obj
KJS::Value QListViewItemImp::removeItem_12( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
instance->removeItem(
arg0 );
@@ -798,15 +798,15 @@ KJS::Value QListViewItemImp::totalHeight_15( KJS::ExecState *exec, KJS::Object &
KJS::Value QListViewItemImp::width_16( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
#if 0
- // Unsupported parameter const QFontMetrics &
+ // Unsupported parameter const TQFontMetrics &
return KJS::Value();
- const QFontMetrics & arg0; // Dummy
+ const TQFontMetrics & arg0; // Dummy
- // Unsupported parameter const QListView *
+ // Unsupported parameter const TQListView *
return KJS::Value();
- const QListView * arg1; // Dummy
+ const TQListView * arg1; // Dummy
int arg2 = extractInt(exec, args, 2);
@@ -846,7 +846,7 @@ KJS::Value QListViewItemImp::setText_19( KJS::ExecState *exec, KJS::Object &obj,
int arg0 = extractInt(exec, args, 0);
- QString arg1 = extractQString(exec, args, 1);
+ TQString arg1 = extractQString(exec, args, 1);
instance->setText(
arg0,
@@ -860,7 +860,7 @@ KJS::Value QListViewItemImp::text_20( KJS::ExecState *exec, KJS::Object &obj, co
int arg0 = extractInt(exec, args, 0);
- QString ret;
+ TQString ret;
ret = instance->text(
arg0 );
return KJS::String( ret );
@@ -872,7 +872,7 @@ KJS::Value QListViewItemImp::setPixmap_21( KJS::ExecState *exec, KJS::Object &ob
int arg0 = extractInt(exec, args, 0);
- QPixmap arg1 = extractQPixmap(exec, args, 1);
+ TQPixmap arg1 = extractQPixmap(exec, args, 1);
instance->setPixmap(
arg0,
@@ -888,7 +888,7 @@ KJS::Value QListViewItemImp::pixmap_22( KJS::ExecState *exec, KJS::Object &obj,
instance->pixmap(
arg0 );
- return KJS::Value(); // Returns 'const QPixmap *'
+ return KJS::Value(); // Returns 'const TQPixmap *'
}
@@ -899,7 +899,7 @@ KJS::Value QListViewItemImp::key_23( KJS::ExecState *exec, KJS::Object &obj, con
bool arg1 = extractBool(exec, args, 1);
- QString ret;
+ TQString ret;
ret = instance->key(
arg0,
arg1 );
@@ -910,10 +910,10 @@ KJS::Value QListViewItemImp::key_23( KJS::ExecState *exec, KJS::Object &obj, con
KJS::Value QListViewItemImp::compare_24( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
int arg1 = extractInt(exec, args, 1);
@@ -1002,15 +1002,15 @@ KJS::Value QListViewItemImp::isSelected_31( KJS::ExecState *exec, KJS::Object &o
KJS::Value QListViewItemImp::paintCell_32( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
#if 0
- // Unsupported parameter QPainter *
+ // Unsupported parameter TQPainter *
return KJS::Value();
- QPainter * arg0; // Dummy
+ TQPainter * arg0; // Dummy
- // Unsupported parameter const QColorGroup &
+ // Unsupported parameter const TQColorGroup &
return KJS::Value();
- const QColorGroup & arg1; // Dummy
+ const TQColorGroup & arg1; // Dummy
int arg2 = extractInt(exec, args, 2);
@@ -1033,15 +1033,15 @@ return KJS::Object();
KJS::Value QListViewItemImp::paintBranches_33( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
#if 0
- // Unsupported parameter QPainter *
+ // Unsupported parameter TQPainter *
return KJS::Value();
- QPainter * arg0; // Dummy
+ TQPainter * arg0; // Dummy
- // Unsupported parameter const QColorGroup &
+ // Unsupported parameter const TQColorGroup &
return KJS::Value();
- const QColorGroup & arg1; // Dummy
+ const TQColorGroup & arg1; // Dummy
int arg2 = extractInt(exec, args, 2);
@@ -1064,17 +1064,17 @@ return KJS::Object();
KJS::Value QListViewItemImp::paintFocus_34( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
#if 0
- // Unsupported parameter QPainter *
+ // Unsupported parameter TQPainter *
return KJS::Value();
- QPainter * arg0; // Dummy
+ TQPainter * arg0; // Dummy
- // Unsupported parameter const QColorGroup &
+ // Unsupported parameter const TQColorGroup &
return KJS::Value();
- const QColorGroup & arg1; // Dummy
+ const TQColorGroup & arg1; // Dummy
- QRect arg2 = extractQRect(exec, args, 2);
+ TQRect arg2 = extractQRect(exec, args, 2);
instance->paintFocus(
arg0,
@@ -1089,10 +1089,10 @@ return KJS::Object();
KJS::Value QListViewItemImp::firstChild_35( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- QListViewItem *item = instance->firstChild( );
+ TQListViewItem *item = instance->firstChild( );
if( item )
{
- JSOpaqueProxy *prx = new JSOpaqueProxy( item, "QListViewItem" );
+ JSOpaqueProxy *prx = new JSOpaqueProxy( item, "TQListViewItem" );
prx->setOwner( JSProxy::Native );
KJS::Object proxyObj( prx );
addBindings(exec,proxyObj);
@@ -1106,10 +1106,10 @@ KJS::Value QListViewItemImp::firstChild_35( KJS::ExecState *exec, KJS::Object &o
KJS::Value QListViewItemImp::nextSibling_36( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- QListViewItem *item = instance->nextSibling( );
+ TQListViewItem *item = instance->nextSibling( );
if( item )
{
- JSOpaqueProxy *prx = new JSOpaqueProxy( item, "QListViewItem" );
+ JSOpaqueProxy *prx = new JSOpaqueProxy( item, "TQListViewItem" );
prx->setOwner( JSProxy::Native );
KJS::Object proxyObj( prx );
addBindings(exec,proxyObj);
@@ -1123,10 +1123,10 @@ KJS::Value QListViewItemImp::nextSibling_36( KJS::ExecState *exec, KJS::Object &
KJS::Value QListViewItemImp::parent_37( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- QListViewItem *item = instance->parent( );
+ TQListViewItem *item = instance->parent( );
if( item )
{
- JSOpaqueProxy *prx = new JSOpaqueProxy( item, "QListViewItem" );
+ JSOpaqueProxy *prx = new JSOpaqueProxy( item, "TQListViewItem" );
prx->setOwner( JSProxy::Native );
KJS::Object proxyObj( prx );
addBindings(exec,proxyObj);
@@ -1140,10 +1140,10 @@ KJS::Value QListViewItemImp::parent_37( KJS::ExecState *exec, KJS::Object &obj,
KJS::Value QListViewItemImp::itemAbove_38( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- QListViewItem *item = instance->itemAbove( );
+ TQListViewItem *item = instance->itemAbove( );
if( item )
{
- JSOpaqueProxy *prx = new JSOpaqueProxy( item, "QListViewItem" );
+ JSOpaqueProxy *prx = new JSOpaqueProxy( item, "TQListViewItem" );
prx->setOwner( JSProxy::Native );
KJS::Object proxyObj( prx );
addBindings(exec,proxyObj);
@@ -1157,10 +1157,10 @@ KJS::Value QListViewItemImp::itemAbove_38( KJS::ExecState *exec, KJS::Object &ob
KJS::Value QListViewItemImp::itemBelow_39( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- QListViewItem *item = instance->itemBelow( );
+ TQListViewItem *item = instance->itemBelow( );
if( item )
{
- JSOpaqueProxy *prx = new JSOpaqueProxy( item, "QListViewItem" );
+ JSOpaqueProxy *prx = new JSOpaqueProxy( item, "TQListViewItem" );
prx->setOwner( JSProxy::Native );
KJS::Object proxyObj( prx );
addBindings(exec,proxyObj);
@@ -1184,7 +1184,7 @@ KJS::Value QListViewItemImp::listView_41( KJS::ExecState *exec, KJS::Object &obj
{
instance->listView( );
- return KJS::Value(); // Returns 'QListView *'
+ return KJS::Value(); // Returns 'TQListView *'
}
@@ -1247,10 +1247,10 @@ KJS::Value QListViewItemImp::sort_47( KJS::ExecState *exec, KJS::Object &obj, co
KJS::Value QListViewItemImp::moveItem_48( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- // Unsupported parameter QListViewItem *
+ // Unsupported parameter TQListViewItem *
return KJS::Value();
- QListViewItem * arg0; // Dummy
+ TQListViewItem * arg0; // Dummy
instance->moveItem(
arg0 );
@@ -1301,10 +1301,10 @@ KJS::Value QListViewItemImp::dropEnabled_52( KJS::ExecState *exec, KJS::Object &
KJS::Value QListViewItemImp::acceptDrop_53( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
- // Unsupported parameter const QMimeSource *
+ // Unsupported parameter const TQMimeSource *
return KJS::Value();
- const QMimeSource * arg0; // Dummy
+ const TQMimeSource * arg0; // Dummy
bool ret;
ret = instance->acceptDrop(