author | zautrix <zautrix> | 2005-12-02 10:03:46 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-12-02 10:03:46 (UTC) |
commit | cba4eb3e05bee757b910f316ffab01d3849c0138 (patch) (side-by-side diff) | |
tree | bd1068f0042a7899ffe1434a9848be5383267b23 /kabc | |
parent | a75d2c26aba6cffae8c3f61e173940240042427b (diff) | |
download | kdepimpi-cba4eb3e05bee757b910f316ffab01d3849c0138.zip kdepimpi-cba4eb3e05bee757b910f316ffab01d3849c0138.tar.gz kdepimpi-cba4eb3e05bee757b910f316ffab01d3849c0138.tar.bz2 |
more sync
-rw-r--r-- | kabc/addressbook.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index bdc2762..ed3ac84 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp @@ -397,3 +397,3 @@ void AddressBook::export2File( QString fileName, QString resourceName ) if ( !resourceName.isEmpty() ) - include = (resourceName == (*it).resource()->name() ); + include = (resourceName == (*it).resource()->resourceName() ); if ( include ) { @@ -512,3 +512,3 @@ int AddressBook::importFromFile( QString fileName, bool replaceLabel, bool remo qDebug("SaveAB::checking resource..." ); - if ( (*it)->name() == resource ) { + if ( (*it)->resourceName() == resource ) { setRes = (*it); @@ -539,3 +539,3 @@ void AddressBook::setUntagged(bool setNonSyncTagged, QString resource) // = fals for ( ait = begin(); ait != end(); ++ait ) { - if ( (*ait).resource() && (*ait).resource()->name() == resource ) { + if ( (*ait).resource() && (*ait).resource()->resourceName() == resource ) { (*ait).setTagged( false ); |