summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/ablabel.cpp12
-rw-r--r--core/pim/addressbook/ablabel.h8
2 files changed, 13 insertions, 7 deletions
diff --git a/core/pim/addressbook/ablabel.cpp b/core/pim/addressbook/ablabel.cpp
index 1139bd7..80b57ae 100644
--- a/core/pim/addressbook/ablabel.cpp
+++ b/core/pim/addressbook/ablabel.cpp
@@ -27,3 +27,3 @@
27 27
28AbLabel::AbLabel( QWidget *parent, const char *name ): 28AbLabel::AbLabel( QWidget *parent, const char *name ):
29 QTextView( parent, name ), 29 QTextView( parent, name ),
@@ -72,3 +72,3 @@ bool AbLabel::selectContact( int UID )
72{ 72{
73 73
74 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){
@@ -110,3 +110,3 @@ void AbLabel::keyPressEvent( QKeyEvent *e )
110 m_itCurContact = m_viewList.end(); 110 m_itCurContact = m_viewList.end();
111 111
112 break; 112 break;
@@ -120,2 +120,8 @@ void AbLabel::keyPressEvent( QKeyEvent *e )
120 break; 120 break;
121 case Qt::Key_Return: // fall through
122 case Qt::Key_Space: // fall through
123 case Qt::Key_Enter: // we want to switch back
124 emit signalOkPressed();
125 break;
126 default: break;
121 } 127 }
diff --git a/core/pim/addressbook/ablabel.h b/core/pim/addressbook/ablabel.h
index b1e35de..80336dc 100644
--- a/core/pim/addressbook/ablabel.h
+++ b/core/pim/addressbook/ablabel.h
@@ -35,6 +35,6 @@ public:
35 35
36 // Set the contacts 36 // Set the contacts
37 void setContacts( const OContactAccess::List& viewList ); 37 void setContacts( const OContactAccess::List& viewList );
38 38
39 // Selects a contact 39 // Selects a contact
40 bool selectContact( int UID ); 40 bool selectContact( int UID );
@@ -49,3 +49,3 @@ signals:
49 void signalOkPressed(); 49 void signalOkPressed();
50 50
51protected: 51protected:
@@ -53,3 +53,3 @@ protected:
53 void keyPressEvent( QKeyEvent * ); 53 void keyPressEvent( QKeyEvent * );
54 54
55private: 55private: