author | Michael Krelin <hacker@klever.net> | 2007-07-10 22:34:46 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-10 22:34:46 (UTC) |
commit | de61d6005b51bc62f01786e06cd964e530c1bf83 (patch) (side-by-side diff) | |
tree | 0d0c3e4adcb0c7858d0556edcefc573bc94ca4bf /microkde/kresources/factory.cpp | |
parent | 8822b171906831b7de71e24f66ca2b07bc3ef92e (diff) | |
download | kdepimpi-de61d6005b51bc62f01786e06cd964e530c1bf83.zip kdepimpi-de61d6005b51bc62f01786e06cd964e530c1bf83.tar.gz kdepimpi-de61d6005b51bc62f01786e06cd964e530c1bf83.tar.bz2 |
load x-adjusted libraries
Diffstat (limited to 'microkde/kresources/factory.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | microkde/kresources/factory.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/microkde/kresources/factory.cpp b/microkde/kresources/factory.cpp index 4f286d1..1c6c228 100644 --- a/microkde/kresources/factory.cpp +++ b/microkde/kresources/factory.cpp @@ -82,28 +82,28 @@ Factory::Factory( const QString& resourceFamily) : */ //US new PluginInfo* info = new PluginInfo; - info->library = "microkabc_file"; + info->library = "xmicrokabc_file"; info->nameLabel = i18n( "file" ); info->descriptionLabel = i18n( "One file" ); mTypeMap.insert( "file", info ); info = new PluginInfo; - info->library = "microkabc_dir"; + info->library = "xmicrokabc_dir"; info->nameLabel = i18n( "dir" ); info->descriptionLabel = i18n( "A directory with many files" ); mTypeMap.insert( "dir", info ); info = new PluginInfo; - info->library = "microkabc_ldap"; + info->library = "xmicrokabc_ldap"; info->nameLabel = i18n( "ldap" ); info->descriptionLabel = i18n( "Connect to a directory server" ); mTypeMap.insert( "ldap", info ); //US add opie plugin only, if the library exists. /*US - QString libname = "microkabc_opie"; + QString libname = "xmicrokabc_opie"; QString path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); if ( !path.isEmpty() ) { info = new PluginInfo; @@ -113,9 +113,9 @@ Factory::Factory( const QString& resourceFamily) : mTypeMap.insert( "opie", info ); } */ //US add qtopia plugin only, if the library exists. - QString libname = "microkabc_qtopia"; + QString libname = "xmicrokabc_qtopia"; QString path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); if ( !path.isEmpty() ) { info = new PluginInfo; @@ -125,9 +125,9 @@ Factory::Factory( const QString& resourceFamily) : mTypeMap.insert( "qtopia", info ); } //US add sharp plugin only, if the library exists. - libname = "microkabc_sharpdtm"; + libname = "xmicrokabc_sharpdtm"; path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); if ( !path.isEmpty() ) { info = new PluginInfo; @@ -138,9 +138,9 @@ Factory::Factory( const QString& resourceFamily) : } //LR add ol plugin only, if the library exists. - libname = "microkabc_olaccess"; + libname = "xmicrokabc_olaccess"; path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); if ( !path.isEmpty() ) { info = new PluginInfo; |