author | eilers <eilers> | 2003-01-13 14:55:17 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-01-13 14:55:17 (UTC) |
commit | 477ababb7350018099b5e83a5fb24a7cfe5b9a18 (patch) (unidiff) | |
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 | 7 |
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 | |||
@@ -30,59 +30,62 @@ AbLabel::AbLabel( QWidget *parent, const char *name ): | |||
30 | m_empty( false ) | 30 | m_empty( false ) |
31 | { | 31 | { |
32 | } | 32 | } |
33 | 33 | ||
34 | AbLabel::~AbLabel() | 34 | AbLabel::~AbLabel() |
35 | { | 35 | { |
36 | } | 36 | } |
37 | 37 | ||
38 | void AbLabel::setContacts( const OContactAccess::List& viewList ) | 38 | void AbLabel::setContacts( const OContactAccess::List& viewList ) |
39 | { | 39 | { |
40 | m_viewList = viewList; | 40 | m_viewList = viewList; |
41 | if (m_viewList.count() != 0){ | 41 | if (m_viewList.count() != 0){ |
42 | m_empty = false; | 42 | m_empty = false; |
43 | m_itCurContact = m_viewList.begin(); | 43 | m_itCurContact = m_viewList.begin(); |
44 | sync(); | 44 | sync(); |
45 | }else{ | 45 | }else{ |
46 | // m_itCurContact.clear(); | 46 | // m_itCurContact.clear(); |
47 | m_empty = true; | 47 | m_empty = true; |
48 | setText( "" ); | 48 | setText( "" ); |
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||
52 | int AbLabel::currentEntry_UID() | 52 | int 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; |
58 | else | 58 | else |
59 | return ( contact.uid() ); | 59 | return ( contact.uid() ); |
60 | } | 60 | } |
61 | 61 | ||
62 | OContact AbLabel::currentEntry() | 62 | OContact 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 | ||
68 | bool AbLabel::selectContact( int UID ) | 71 | bool AbLabel::selectContact( int UID ) |
69 | { | 72 | { |
70 | 73 | ||
71 | for ( m_itCurContact = m_viewList.begin(); m_itCurContact != m_viewList.end(); ++m_itCurContact){ | 74 | for ( m_itCurContact = m_viewList.begin(); m_itCurContact != m_viewList.end(); ++m_itCurContact){ |
72 | if ( (*m_itCurContact).uid() == UID ) | 75 | if ( (*m_itCurContact).uid() == UID ) |
73 | break; | 76 | break; |
74 | } | 77 | } |
75 | sync(); | 78 | sync(); |
76 | 79 | ||
77 | return true; | 80 | return true; |
78 | } | 81 | } |
79 | 82 | ||
80 | 83 | ||
81 | 84 | ||
82 | void AbLabel::sync() | 85 | void AbLabel::sync() |
83 | { | 86 | { |
84 | QString text = (*m_itCurContact).toRichText(); | 87 | QString text = (*m_itCurContact).toRichText(); |
85 | setText( text ); | 88 | setText( text ); |
86 | } | 89 | } |
87 | 90 | ||
88 | void AbLabel::keyPressEvent( QKeyEvent *e ) | 91 | void AbLabel::keyPressEvent( QKeyEvent *e ) |