-rw-r--r-- | kde2file/abdump/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kde2file/abdump/main.cpp b/kde2file/abdump/main.cpp index b359cfe..824d054 100644 --- a/kde2file/abdump/main.cpp +++ b/kde2file/abdump/main.cpp @@ -99,13 +99,14 @@ int main( int argc, char *argv[] ) qDebug("************************************* "); if ( !read ) { KABC::AddressBook::Iterator it; KABC::VCardConverter converter; QString datastream; for( it = standardAddressBook->begin(); it != standardAddressBook->end(); ++it ) { - if ( (*it).isEmpty() || ! (*it).resource() ) + // if ( (*it).isEmpty() || ! (*it).resource() ) + if ( (*it).isEmpty() ) continue; KABC::Addressee a = ( *it ); QString vcard = converter.createVCard( a ); vcard += QString("\r\n"); datastream += vcard; } |