diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:21 -0600 |
commit | dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 (patch) | |
tree | c297348a55df66c571de4525646e0b9762427353 /kparts/browserinterface.cpp | |
parent | b7658a0d5eca24a9d37c6e04f88298ef02389db0 (diff) | |
download | tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.tar.gz tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kparts/browserinterface.cpp')
-rw-r--r-- | kparts/browserinterface.cpp | 58 |
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" |