From 9976f7357601e33c4a1984bf79a68ac344fdd188 Mon Sep 17 00:00:00 2001 From: zecke Date: Thu, 13 Jun 2002 19:03:11 +0000 Subject: receive(bool) -> receive(int) cause QDataStream is not capable of bool --- (limited to 'core') 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); diff --git a/core/applets/irdaapplet/irda.h b/core/applets/irdaapplet/irda.h index 97ca3c3..002d295 100644 --- a/core/applets/irdaapplet/irda.h +++ b/core/applets/irdaapplet/irda.h @@ -51,7 +51,7 @@ private: QPixmap receiveActivePixmap; int irdaactive; // bool and bitfields later bool irdaactive :1 ; int irdaDiscoveryActive; - bool receiveActive; + bool receiveActive : 1; bool receiveStateChanged; private slots: -- cgit v0.9.0.2