author | mickeyl <mickeyl> | 2005-08-24 16:20:09 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-08-24 16:20:09 (UTC) |
commit | f0bb6c410f19d502cf563254d95158617a32b94e (patch) (side-by-side diff) | |
tree | 63f9953ae1a310f8c286ea62b449e16e6e9d74ce /libopie2 | |
parent | c1fc89afc42b1a8781b92b581f5be19916e2b69d (diff) | |
download | opie-f0bb6c410f19d502cf563254d95158617a32b94e.zip opie-f0bb6c410f19d502cf563254d95158617a32b94e.tar.gz opie-f0bb6c410f19d502cf563254d95158617a32b94e.tar.bz2 |
fix STUPID bug by remembering that a QCopEnvelope is sent in the object destructor
sometimes C++ is too tricky for human beings :/
-rw-r--r-- | libopie2/opiecore/device/odevice_abstractmobiledevice.cpp | 10 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_zaurus.cpp | 8 |
2 files changed, 13 insertions, 5 deletions
diff --git a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp index fe5864b..dbe9364 100644 --- a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp +++ b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp @@ -65,3 +65,5 @@ bool OAbstractMobileDevice::suspend() { - QCopEnvelope( "QPE/System", "aboutToSuspend()" ); + { + QCopEnvelope( "QPE/System", "aboutToSuspend()" ); + } @@ -84,5 +86,7 @@ bool OAbstractMobileDevice::suspend() { - return res; + { + QCopEnvelope( "QPE/System", "returnFromSuspend()" ); + } - QCopEnvelope( "QPE/System", "returnFromSuspend()" ); + return res; } diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp index 4a80a7e..5d48488 100644 --- a/libopie2/opiecore/device/odevice_zaurus.cpp +++ b/libopie2/opiecore/device/odevice_zaurus.cpp @@ -714,3 +714,5 @@ bool Zaurus::suspend() { bool res = false; - QCopEnvelope( "QPE/System", "aboutToSuspend()" ); + { + QCopEnvelope( "QPE/System", "aboutToSuspend()" ); + } @@ -734,3 +736,5 @@ bool Zaurus::suspend() { - QCopEnvelope( "QPE/System", "returnFromSuspend()" ); + { + QCopEnvelope( "QPE/System", "returnFromSuspend()" ); + } |