-rw-r--r-- | core/pim/addressbook/ablabel.cpp | 5 |
1 files changed, 4 insertions, 1 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 @@ -48,23 +48,26 @@ void AbLabel::setContacts( const OContactAccess::List& viewList ) setText( "" ); } } int AbLabel::currentEntry_UID() { - OContact contact = *m_itCurContact; + OContact contact = currentEntry(); if ( contact.isEmpty() ) return 0; else return ( contact.uid() ); } OContact AbLabel::currentEntry() { + if ( ! m_empty ) return ( *m_itCurContact ); + else + return OContact(); } bool AbLabel::selectContact( int UID ) { |