summaryrefslogtreecommitdiffstats
path: root/kparts/browserinterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kparts/browserinterface.cpp')
-rw-r--r--kparts/browserinterface.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kparts/browserinterface.cpp b/kparts/browserinterface.cpp
index fc9909a9f..52200a20b 100644
--- a/kparts/browserinterface.cpp
+++ b/kparts/browserinterface.cpp
@@ -4,7 +4,7 @@
#include <tqmetaobject.h>
#include <config.h>
-#include <private/qucomextra_p.h>
+#include <tqucomextra_p.h>
using namespace KParts;
@@ -19,12 +19,12 @@ BrowserInterface::~BrowserInterface()
void BrowserInterface::callMethod( const char *name, const TQVariant &argument )
{
- int slot = metaObject()->findSlot( name );
+ int slot = tqmetaObject()->tqfindSlot( name );
if ( slot == -1 )
return;
- QUObject o[ 2 ];
+ TQUObject o[ 2 ];
TQStringList strLst;
uint i;
@@ -33,21 +33,21 @@ void BrowserInterface::callMethod( const char *name, const TQVariant &argument )
case TQVariant::Invalid:
break;
case TQVariant::String:
- static_QUType_QString.set( o + 1, argument.toString() );
+ static_TQUType_TQString.set( o + 1, argument.toString() );
break;
case TQVariant::StringList:
strLst = argument.toStringList();
- static_QUType_ptr.set( o + 1, &strLst );
+ static_TQUType_ptr.set( o + 1, &strLst );
break;
case TQVariant::Int:
- static_QUType_int.set( o + 1, argument.toInt() );
+ static_TQUType_int.set( o + 1, argument.toInt() );
break;
case TQVariant::UInt:
i = argument.toUInt();
- static_QUType_ptr.set( o + 1, &i );
+ static_TQUType_ptr.set( o + 1, &i );
break;
case TQVariant::Bool:
- static_QUType_bool.set( o + 1, argument.toBool() );
+ static_TQUType_bool.set( o + 1, argument.toBool() );
break;
default: return;
}