author | ulf69 <ulf69> | 2004-10-22 22:43:16 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-10-22 22:43:16 (UTC) |
commit | 1d8ed9298d8c201184d0a941f0d45e7f42201fd4 (patch) (side-by-side diff) | |
tree | cb74dda886a88cbc108219fd4a0888420efd3fd3 | |
parent | f6e3009e73281495775542ad62371edd8c43c986 (diff) | |
download | kdepimpi-1d8ed9298d8c201184d0a941f0d45e7f42201fd4.zip kdepimpi-1d8ed9298d8c201184d0a941f0d45e7f42201fd4.tar.gz kdepimpi-1d8ed9298d8c201184d0a941f0d45e7f42201fd4.tar.bz2 |
fixed builderror
-rw-r--r-- | microkde/kresources/factory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/microkde/kresources/factory.cpp b/microkde/kresources/factory.cpp index 78e3b43..3d1889f 100644 --- a/microkde/kresources/factory.cpp +++ b/microkde/kresources/factory.cpp @@ -80,66 +80,66 @@ Factory::Factory( const QString& resourceFamily) : PluginInfo* info = new PluginInfo; info->library = "microkabc_file"; info->nameLabel = i18n( "file" ); info->descriptionLabel = i18n( "Choose one file" ); mTypeMap.insert( "file", info ); info = new PluginInfo; info->library = "microkabc_dir"; info->nameLabel = i18n( "dir" ); info->descriptionLabel = i18n( "Choose a directory with may files" ); mTypeMap.insert( "dir", info ); info = new PluginInfo; info->library = "microkabc_ldap"; info->nameLabel = i18n( "ldap" ); info->descriptionLabel = i18n( "No description available" ); mTypeMap.insert( "ldap", info ); //US add opie plugin only, if the library exists. /*US QString libname = "microkabc_opie"; QString path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); if ( !path.isEmpty() ) { info = new PluginInfo; info->library = libname; info->nameLabel = i18n( "opie" ); info->descriptionLabel = i18n( "Opie PIM Addressbook." ); mTypeMap.insert( "opie", info ); } */ //US add qtopia plugin only, if the library exists. - libname = "microkabc_qtopia"; - path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); + QString libname = "microkabc_qtopia"; + QString path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); if ( !path.isEmpty() ) { info = new PluginInfo; info->library = libname; info->nameLabel = i18n( "qtopia" ); info->descriptionLabel = i18n( "Qtopia PIM Addressbook." ); mTypeMap.insert( "qtopia", info ); } //US add sharp plugin only, if the library exists. libname = "microkabc_sharpdtm"; path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); if ( !path.isEmpty() ) { info = new PluginInfo; info->library = libname; info->nameLabel = i18n( "sharp" ); info->descriptionLabel = i18n( "Sharp DTM Addressbook." ); mTypeMap.insert( "sharp", info ); } } Factory::~Factory() { } QStringList Factory::typeNames() const { //US method QMap::keys() not available yet. SO collect the data manually //US return mTypeMap.keys(); |