From dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:21 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- kparts/browserinterface.cpp | 58 --------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 kparts/browserinterface.cpp (limited to 'kparts/browserinterface.cpp') 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 - -#include -#include - -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" -- cgit v1.2.3