summaryrefslogtreecommitdiff
path: root/core/pim/addressbook
authoreilers <eilers>2003-01-13 14:55:17 (UTC)
committer eilers <eilers>2003-01-13 14:55:17 (UTC)
commit477ababb7350018099b5e83a5fb24a7cfe5b9a18 (patch) (unidiff)
tree4cffd1ec626dcf7109fe23256a6a2a09efbb58ab /core/pim/addressbook
parent7f3e8539c2967e9c78cbd5fd4e676a0fba4e1fb1 (diff)
downloadopie-477ababb7350018099b5e83a5fb24a7cfe5b9a18.zip
opie-477ababb7350018099b5e83a5fb24a7cfe5b9a18.tar.gz
opie-477ababb7350018099b5e83a5fb24a7cfe5b9a18.tar.bz2
Oops.. Bugfix in devel branch.. Merged it to main !
Diffstat (limited to 'core/pim/addressbook') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/ablabel.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/pim/addressbook/ablabel.cpp b/core/pim/addressbook/ablabel.cpp
index 937aaae..1139bd7 100644
--- a/core/pim/addressbook/ablabel.cpp
+++ b/core/pim/addressbook/ablabel.cpp
@@ -51,7 +51,7 @@ void AbLabel::setContacts( const OContactAccess::List& viewList )
51 51
52int AbLabel::currentEntry_UID() 52int AbLabel::currentEntry_UID()
53{ 53{
54 OContact contact = *m_itCurContact; 54 OContact contact = currentEntry();
55 55
56 if ( contact.isEmpty() ) 56 if ( contact.isEmpty() )
57 return 0; 57 return 0;
@@ -61,7 +61,10 @@ int AbLabel::currentEntry_UID()
61 61
62OContact AbLabel::currentEntry() 62OContact AbLabel::currentEntry()
63{ 63{
64 return ( *m_itCurContact ); 64 if ( ! m_empty )
65 return ( *m_itCurContact );
66 else
67 return OContact();
65} 68}
66 69
67 70