KParts
Go to the documentation of this file.
22 #include <QtCore/QMetaEnum>
23 #include <QtCore/QStringList>
27 using namespace KParts;
40 switch ( argument.type() )
42 case QVariant::Invalid:
44 case QVariant::String:
45 QMetaObject::invokeMethod(
this, name,
46 Q_ARG(
QString, argument.toString() ) );
48 case QVariant::StringList:
51 QMetaObject::invokeMethod(
this, name,
56 QMetaObject::invokeMethod(
this, name,
57 Q_ARG(
int, argument.toInt() ) );
61 unsigned int i = argument.toUInt();
62 QMetaObject::invokeMethod(
this, name,
63 Q_ARG(
unsigned int *, &i ) );
67 QMetaObject::invokeMethod(
this, name,
68 Q_ARG(
bool, argument.toBool() ) );
75 #include "browserinterface.moc"
This file is part of the KDE documentation.
Documentation copyright © 1996-2013 The KDE developers.
Generated on Tue Jul 16 2013 11:49:10 by
doxygen 1.8.1.1 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.