SVN commit 707060 by alexmerry: KLibFactory => KPluginFactory M +3 -3 crypto.cpp M +1 -1 crypto.h --- trunk/KDE/kdelibs/security/crypto/crypto.cpp #707059:707060 @@ -97,8 +97,8 @@ using namespace KNetwork; -typedef KGenericFactory KryptoFactory; -K_EXPORT_COMPONENT_FACTORY( kcm_crypto, KryptoFactory("kcmcrypto") ) +K_PLUGIN_FACTORY(KryptoFactory, registerPlugin();) +K_EXPORT_PLUGIN(KryptoFactory("kcmcrypto")) CipherItem::CipherItem( Q3ListView *view, const QString& cipher, int bits, int maxBits, KCryptoConfig *module ) @@ -219,7 +219,7 @@ -KCryptoConfig::KCryptoConfig(QWidget *parent, const QStringList &) +KCryptoConfig::KCryptoConfig(QWidget *parent, const QVariantList &) : KCModule(KryptoFactory::componentData(), parent) { QGridLayout *grid; --- trunk/KDE/kdelibs/security/crypto/crypto.h #707059:707060 @@ -223,7 +223,7 @@ { Q_OBJECT public: - explicit KCryptoConfig(QWidget *parent = 0L, const QStringList &list = QStringList()); + explicit KCryptoConfig(QWidget *parent = 0L, const QVariantList &list = QVariantList()); virtual ~KCryptoConfig(); void load();