summaryrefslogtreecommitdiffstats
path: root/kparts/browserinterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kparts/browserinterface.cpp')
-rw-r--r--kparts/browserinterface.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/kparts/browserinterface.cpp b/kparts/browserinterface.cpp
deleted file mode 100644
index e02ae34cc..000000000
--- a/kparts/browserinterface.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-
-#include "browserinterface.h"
-
-#include <tqmetaobject.h>
-
-#include <config.h>
-#include <tqucomextra_p.h>
-
-using namespace KParts;
-
-BrowserInterface::BrowserInterface( TQObject *parent, const char *name )
- : TQObject( parent, name )
-{
-}
-
-BrowserInterface::~BrowserInterface()
-{
-}
-
-void BrowserInterface::callMethod( const char *name, const TQVariant &argument )
-{
- int slot = metaObject()->findSlot( name );
-
- if ( slot == -1 )
- return;
-
- TQUObject o[ 2 ];
- TQStringList strLst;
- uint i;
-
- switch ( argument.type() )
- {
- case TQVariant::Invalid:
- break;
- case TQVariant::String:
- static_TQUType_TQString.set( o + 1, argument.toString() );
- break;
- case TQVariant::StringList:
- strLst = argument.toStringList();
- static_TQUType_ptr.set( o + 1, &strLst );
- break;
- case TQVariant::Int:
- static_TQUType_int.set( o + 1, argument.toInt() );
- break;
- case TQVariant::UInt:
- i = argument.toUInt();
- static_TQUType_ptr.set( o + 1, &i );
- break;
- case TQVariant::Bool:
- static_TQUType_bool.set( o + 1, argument.toBool() );
- break;
- default: return;
- }
-
- tqt_invoke( slot, o );
-}
-
-#include "browserinterface.moc"