summaryrefslogtreecommitdiff
path: root/core/applets/irdaapplet/irda.cpp
Side-by-side diff
Diffstat (limited to 'core/applets/irdaapplet/irda.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/irdaapplet/irda.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp
index 03912aa..28a79d1 100644
--- a/core/applets/irdaapplet/irda.cpp
+++ b/core/applets/irdaapplet/irda.cpp
@@ -179,4 +179,4 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) {
qWarning("Enable receive" );
- QCopEnvelope e("QPE/Obex", "receive(bool)" );
- e << true;
+ QCopEnvelope e("QPE/Obex", "receive(int)" );
+ e << 1;
receiveActive = true;
@@ -188,4 +188,4 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) {
qWarning("Disable receive" );
- QCopEnvelope e("QPE/Obex", "receive(bool)" );
- e << false;
+ QCopEnvelope e("QPE/Obex", "receive(int)" );
+ e << 0;
receiveActive = false;