summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--bin/kdepim/WhatsNew.txt4
-rw-r--r--kabc/addresseeview.cpp6
-rw-r--r--kaddressbook/xxportselectdialog.cpp4
3 files changed, 14 insertions, 0 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt
index 3532084..93edc59 100644
--- a/bin/kdepim/WhatsNew.txt
+++ b/bin/kdepim/WhatsNew.txt
@@ -8,4 +8,8 @@ Fixed a problem with agenda popup on the desktop in KO/Pi.
Fixed a crash when reloading file, e.g. after a passive pi-sync synchronization.
Added config option to not display completed todos in agenda view.
+Addressee view is now using the formatted name, if defined.
+That makes it possible to display "lastname, firstname" in that view now.
+To set the formatted name for all contacts, please use menu:
+Edit->Change->Set formatted name.
********** VERSION 2.1.4 ************
diff --git a/kabc/addresseeview.cpp b/kabc/addresseeview.cpp
index 9118c3d..667a5e2 100644
--- a/kabc/addresseeview.cpp
+++ b/kabc/addresseeview.cpp
@@ -44,4 +44,5 @@
+#include <qstylesheet.h>
#include "externalapphandler.h"
#include <kabc/addresseeview.h>
@@ -71,4 +72,5 @@ AddresseeView::AddresseeView( QWidget *parent, const char *name )
//US link->setColor( KGlobalSettings::linkColor() );
+
}
void AddresseeView::printMe()
@@ -126,6 +128,10 @@ void AddresseeView::setAddressee( const KABC::Addressee& mAddressee )
return;
}
+#if 0
QString name = ( mAddressee.assembledName().isEmpty() ?
mAddressee.formattedName() : mAddressee.assembledName() );
+#endif
+
+ QString name = mAddressee.realName();
QString dynamicPart;
diff --git a/kaddressbook/xxportselectdialog.cpp b/kaddressbook/xxportselectdialog.cpp
index e134f97..278cab0 100644
--- a/kaddressbook/xxportselectdialog.cpp
+++ b/kaddressbook/xxportselectdialog.cpp
@@ -160,4 +160,5 @@ KABC::AddresseeList XXPortSelectDialog::contacts()
KABC::Addressee addr = mCore->addressBook()->findByUid( *it );
if ( !addr.isEmpty() )
+ if ( addr.uid().left( 19 ) != QString("last-syncAddressee-") )
list.append( addr );
}
@@ -172,4 +173,5 @@ KABC::AddresseeList XXPortSelectDialog::contacts()
for ( it = mCore->addressBook()->begin(); it != mCore->addressBook()->end(); ++it ) {
if ( (*filterIt).filterAddressee( *it ) )
+ if ((*it).uid().left( 19 ) != QString("last-syncAddressee-") )
list.append( *it );
}
@@ -182,4 +184,5 @@ KABC::AddresseeList XXPortSelectDialog::contacts()
for ( tmpIt = tmp.begin(); tmpIt != tmp.end(); ++tmpIt )
if ( categorieList.contains( *tmpIt ) ) {
+ if ((*it).uid().left( 19 ) != QString("last-syncAddressee-") )
list.append( *it );
break;
@@ -190,4 +193,5 @@ KABC::AddresseeList XXPortSelectDialog::contacts()
KABC::AddressBook::Iterator it;
for ( it = mCore->addressBook()->begin(); it != mCore->addressBook()->end(); ++it )
+ if ((*it).uid().left( 19 ) != QString("last-syncAddressee-") )
list.append( *it );
}