summaryrefslogtreecommitdiffabout
path: root/kabc
authorulf69 <ulf69>2004-07-17 00:40:37 (UTC)
committer ulf69 <ulf69>2004-07-17 00:40:37 (UTC)
commitafdcf8b412f8831d0027aa54d7e8c652a84e02b7 (patch) (side-by-side diff)
tree27251e20427b3a99ab19b2285de47c6ff2daf66e /kabc
parentcb3782d17ea98a15acb158ea6dd18aa2600b08f8 (diff)
downloadkdepimpi-afdcf8b412f8831d0027aa54d7e8c652a84e02b7.zip
kdepimpi-afdcf8b412f8831d0027aa54d7e8c652a84e02b7.tar.gz
kdepimpi-afdcf8b412f8831d0027aa54d7e8c652a84e02b7.tar.bz2
code cleanup
Diffstat (limited to 'kabc') (more/less context) (show whitespace changes)
-rw-r--r--kabc/plugins/qtopia/resourceqtopia.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/kabc/plugins/qtopia/resourceqtopia.cpp b/kabc/plugins/qtopia/resourceqtopia.cpp
index 7475685..7e10e46 100644
--- a/kabc/plugins/qtopia/resourceqtopia.cpp
+++ b/kabc/plugins/qtopia/resourceqtopia.cpp
@@ -150,50 +150,51 @@ void ResourceQtopia::doClose()
{
}
bool ResourceQtopia::load()
{
kdDebug(5700) << "ResourceQtopia::load(): '" << mFileName << "'" << endl;
// qDebug("ResourceQtopia::load: Try to load file() %s", mFileName.latin1());
AddressBookAccess* access = new AddressBookAccess();
if ( !access ) {
qDebug("Unable to load file() %s", mFileName.latin1());
addressBook()->error( i18n( "Unable to load file '%1'." ).arg( mFileName ) );
return false;
}
bool res = false;
if (mConverter == 0)
{
mConverter = new QtopiaConverter();
res = mConverter->init();
if ( !res )
{
- qDebug("Unable to initialize qtopia converter. Most likely a problem with the category file");
- addressBook()->error( i18n( "Unable to initialize qtopia converter. Most likely a problem with the category file" ) );
+ QString msg("Unable to initialize qtopia converter. Most likely a problem with the category file");
+ qDebug(msg);
+ addressBook()->error( i18n( msg ) );
delete access;
return false;
}
}
{ //create a new scope
AddressBookIterator it(*access);
const PimContact* contact;
for (contact=it.toFirst(); it.current(); ++it) {
contact = it.current();
KABC::Addressee addressee;
res = mConverter->qtopiaToAddressee( (*contact), addressee );
if ( !addressee.isEmpty() && res )
{
addressee.setResource( this );
addressBook()->insertAddressee( addressee );
}
}
}