author | harlekin <harlekin> | 2002-06-11 16:21:52 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-11 16:21:52 (UTC) |
commit | d709dd35dc07d4a204380354f00a89ceb4d1f845 (patch) (unidiff) | |
tree | 13c3c77584516dd0a1492583c9537ed03846a3ee | |
parent | 38e25eff8c87c8f44ad6bc83b64bf3411c31c47f (diff) | |
download | opie-d709dd35dc07d4a204380354f00a89ceb4d1f845.zip opie-d709dd35dc07d4a204380354f00a89ceb4d1f845.tar.gz opie-d709dd35dc07d4a204380354f00a89ceb4d1f845.tar.bz2 |
activated the qcop channel
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 18 | ||||
-rw-r--r-- | core/pim/addressbook/addressbook.h | 4 |
2 files changed, 19 insertions, 3 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 86d1760..e11cf4c 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -139,2 +139,16 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, | |||
139 | 139 | ||
140 | |||
141 | // make it possible to go directly to businesscard via qcop call | ||
142 | #if defined(Q_WS_QWS) | ||
143 | #if !defined(QT_NO_COP) | ||
144 | QCopChannel *addressChannel = new QCopChannel("QPE/Addressbook" , this ); | ||
145 | connect (addressChannel, SIGNAL( received(const QCString &, const QByteArray &)), | ||
146 | this, SLOT ( appMessage(const QCString &, const QByteArray &) ) ); | ||
147 | #endif | ||
148 | #endif | ||
149 | |||
150 | |||
151 | |||
152 | |||
153 | |||
140 | #ifndef MAKE_FOR_SHARP_ROM | 154 | #ifndef MAKE_FOR_SHARP_ROM |
@@ -252,2 +266,4 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, | |||
252 | } | 266 | } |
267 | |||
268 | |||
253 | void AddressbookWindow::slotSetFont( int size ) { | 269 | void AddressbookWindow::slotSetFont( int size ) { |
@@ -295,3 +311,3 @@ void AddressbookWindow::importvCard() { | |||
295 | setDocument((const QString&) str ); | 311 | setDocument((const QString&) str ); |
296 | 312 | ||
297 | } | 313 | } |
diff --git a/core/pim/addressbook/addressbook.h b/core/pim/addressbook/addressbook.h index da43731..34ca85d 100644 --- a/core/pim/addressbook/addressbook.h +++ b/core/pim/addressbook/addressbook.h | |||
@@ -61,3 +61,3 @@ public slots: | |||
61 | private slots: | 61 | private slots: |
62 | void importvCard(); | 62 | void importvCard(); |
63 | void slotListNew(); | 63 | void slotListNew(); |
@@ -96,3 +96,3 @@ private: | |||
96 | 96 | ||
97 | QAction *actionNew, *actionEdit, *actionTrash, *actionFind, *actionBeam, | 97 | QAction *actionNew, *actionEdit, *actionTrash, *actionFind, *actionBeam, |
98 | *actionPersonal, *actionMail; | 98 | *actionPersonal, *actionMail; |