author | eilers <eilers> | 2003-01-13 14:55:17 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-01-13 14:55:17 (UTC) |
commit | 477ababb7350018099b5e83a5fb24a7cfe5b9a18 (patch) (side-by-side diff) | |
tree | 4cffd1ec626dcf7109fe23256a6a2a09efbb58ab | |
parent | 7f3e8539c2967e9c78cbd5fd4e676a0fba4e1fb1 (diff) | |
download | opie-477ababb7350018099b5e83a5fb24a7cfe5b9a18.zip opie-477ababb7350018099b5e83a5fb24a7cfe5b9a18.tar.gz opie-477ababb7350018099b5e83a5fb24a7cfe5b9a18.tar.bz2 |
Oops.. Bugfix in devel branch.. Merged it to main !
-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 @@ -53,3 +53,3 @@ int AbLabel::currentEntry_UID() { - OContact contact = *m_itCurContact; + OContact contact = currentEntry(); @@ -63,3 +63,6 @@ OContact AbLabel::currentEntry() { + if ( ! m_empty ) return ( *m_itCurContact ); + else + return OContact(); } |