author | zautrix <zautrix> | 2005-10-27 08:51:22 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-10-27 08:51:22 (UTC) |
commit | eb83d8b5542de9ca0c421ad6aca2913b502bbe78 (patch) (side-by-side diff) | |
tree | 44827c23c1d72591d569ffa277feb75480041443 | |
parent | ff68b29b914fc3fbc3aa777d3e3ceeb8a64ecc09 (diff) | |
download | kdepimpi-eb83d8b5542de9ca0c421ad6aca2913b502bbe78.zip kdepimpi-eb83d8b5542de9ca0c421ad6aca2913b502bbe78.tar.gz kdepimpi-eb83d8b5542de9ca0c421ad6aca2913b502bbe78.tar.bz2 |
abc
-rw-r--r-- | microkde/kresources/factory.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/microkde/kresources/factory.cpp b/microkde/kresources/factory.cpp index 5fbfa68..4843ce0 100644 --- a/microkde/kresources/factory.cpp +++ b/microkde/kresources/factory.cpp @@ -139,4 +139,17 @@ Factory::Factory( const QString& resourceFamily) : + //LR add ol plugin only, if the library exists. + libname = "microkabc_olaccess"; + path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); + if ( !path.isEmpty() ) + { + info = new PluginInfo; + info->library = libname; + info->nameLabel = i18n( "sharp" ); + info->descriptionLabel = i18n( "Outlook Addressbook." ); + mTypeMap.insert( "olaccess", info ); + } + + } |