summaryrefslogtreecommitdiff
path: root/core/applets/irdaapplet/irda.cpp
authorzecke <zecke>2002-06-13 19:03:11 (UTC)
committer zecke <zecke>2002-06-13 19:03:11 (UTC)
commit9976f7357601e33c4a1984bf79a68ac344fdd188 (patch) (side-by-side diff)
treea9c9229ee77bcf749b1bb008b4bccfa94b2b2bbd /core/applets/irdaapplet/irda.cpp
parent1f26f23cdd2009c1ee9ae79fafb340936b199f2c (diff)
downloadopie-9976f7357601e33c4a1984bf79a68ac344fdd188.zip
opie-9976f7357601e33c4a1984bf79a68ac344fdd188.tar.gz
opie-9976f7357601e33c4a1984bf79a68ac344fdd188.tar.bz2
receive(bool) -> receive(int) cause QDataStream is not capable of bool
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
@@ -177,8 +177,8 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) {
break;
case 4: { // enable receive
qWarning("Enable receive" );
- QCopEnvelope e("QPE/Obex", "receive(bool)" );
- e << true;
+ QCopEnvelope e("QPE/Obex", "receive(int)" );
+ e << 1;
receiveActive = true;
receiveStateChanged = true;
timerEvent(NULL);
@@ -186,8 +186,8 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) {
}
case 5: { // disable receive
qWarning("Disable receive" );
- QCopEnvelope e("QPE/Obex", "receive(bool)" );
- e << false;
+ QCopEnvelope e("QPE/Obex", "receive(int)" );
+ e << 0;
receiveActive = false;
receiveStateChanged = true;
timerEvent(NULL);