summaryrefslogtreecommitdiffabout
path: root/kabc/plugins/file
authorulf69 <ulf69>2004-06-29 05:06:57 (UTC)
committer ulf69 <ulf69>2004-06-29 05:06:57 (UTC)
commitbeccf25496b482fa9eccd41f13c07e67e32f3a52 (patch) (side-by-side diff)
tree2f50a252b93bb866c7f41beebcf539861e7f4e2c /kabc/plugins/file
parentd55d405ad63c4b9e9372430ccd3f73ef927bf7d9 (diff)
downloadkdepimpi-beccf25496b482fa9eccd41f13c07e67e32f3a52.zip
kdepimpi-beccf25496b482fa9eccd41f13c07e67e32f3a52.tar.gz
kdepimpi-beccf25496b482fa9eccd41f13c07e67e32f3a52.tar.bz2
enable dynamic loading
Diffstat (limited to 'kabc/plugins/file') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/plugins/file/resourcefile.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/kabc/plugins/file/resourcefile.cpp b/kabc/plugins/file/resourcefile.cpp
index d30ed2f..80af841 100644
--- a/kabc/plugins/file/resourcefile.cpp
+++ b/kabc/plugins/file/resourcefile.cpp
@@ -43,14 +43,14 @@ $Id$
//US #include <ksavefile.h>
#include <kstandarddirs.h>
-//US #include "formatfactory.h"
+#include "formatfactory.h"
#include "resource.h"
#include "resourcefileconfig.h"
#include "stdaddressbook.h"
-#include <formats/vcardformatplugin2.h>
-#include <formats/binaryformat.h>
+//US #include "../../formats/vcardformatplugin2.h"
+//US #include "../../formats/binaryformat.h"
#include "resourcefile.h"
@@ -59,11 +59,10 @@ using namespace KABC;
extern "C"
{
- void *init_kabc_file()
+//US void *init_kabc_file()
+ void *init_microkabc_file()
{
- qDebug("!!!resourcefile.cpp : init_kabc_file has to be changed");
-//US return new KRES::PluginFactory<ResourceFile,ResourceFileConfig>();
- return 0;
+ return new KRES::PluginFactory<ResourceFile,ResourceFileConfig>();
}
}
@@ -99,15 +98,15 @@ void ResourceFile::init( const QString &fileName, const QString &formatName )
{
mFormatName = formatName;
-/*US FormatFactory *factory = FormatFactory::self();
- mFormat = factory->format( mFormatName );
+ FormatFactory *factory = FormatFactory::self();
+ mFormat = factory->format( mFormatName );
if ( !mFormat ) {
mFormatName = "vcard";
mFormat = factory->format( mFormatName );
}
-*/
+/*US
//US qDebug("ResourceFile::init initialized with format %s ", formatName.latin1());
if (mFormatName == "vcard") {
mFormat = new VCardFormatPlugin2();
@@ -119,6 +118,7 @@ void ResourceFile::init( const QString &fileName, const QString &formatName )
}
else
qDebug("ResourceFile::init format unknown !!! %s ", formatName.latin1());
+*/
/*US we have no KDirWatch. SO simulate the signals from inside the apropriate methods
connect( &mDirWatch, SIGNAL( dirty(const QString&) ), SLOT( fileChanged() ) );
@@ -217,8 +217,8 @@ bool ResourceFile::save( Ticket *ticket )
/*US we use a simpler method to create a backupfile
- (void) KSaveFile::backupFile( mFileName, QString::null /*directory*/
-/*US ,extension );
+ (void) KSaveFile::backupFile( mFileName, QString::null
+ ,extension );
KSaveFile saveFile( mFileName );
bool ok = false;
@@ -286,9 +286,8 @@ bool ResourceFile::lock( const QString &fileName )
file.close();
// Create lock file
- int result = 0;//::link( QFile::encodeName( mLockUniqueName ),
- // QFile::encodeName( lockName ) );
- qDebug("lock files %s, %s needs to be fixed", mLockUniqueName.latin1(), lockName.latin1() );
+ int result = ::link( QFile::encodeName( mLockUniqueName ),
+ QFile::encodeName( lockName ) );
if ( result == 0 ) {
addressBook()->emitAddressBookLocked();
@@ -342,9 +341,9 @@ void ResourceFile::setFormat( const QString &format )
mFormatName = format;
delete mFormat;
-//US FormatFactory *factory = FormatFactory::self();
-//US mFormat = factory->format( mFormatName );
-
+ FormatFactory *factory = FormatFactory::self();
+ mFormat = factory->format( mFormatName );
+/*US
//qDebug("ResourceFile::setFormat initialized with format %s ", format.latin1());
if (mFormatName == "vcard") {
mFormat = new VCardFormatPlugin2();
@@ -356,6 +355,7 @@ void ResourceFile::setFormat( const QString &format )
}
else
qDebug("ResourceFile::setFormat format unknown !!! %s ", format.latin1());
+*/
}