summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
Side-by-side diff
Diffstat (limited to 'libopie2/opiecore/device/odevice_abstractmobiledevice.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_abstractmobiledevice.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
index f3f6af5..fe5864b 100644
--- a/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
+++ b/libopie2/opiecore/device/odevice_abstractmobiledevice.cpp
@@ -1,11 +1,7 @@
/*
                This file is part of the Opie Project
-              Copyright (C) 2004, 2005 Holger Hans Peter Freyther <freyther@handhelds.org>
- Copyright (C) 2004, 2005 Michael 'mickey' Lauer <mickeyl@handhelds.org>
- Copyright (C) 2002, 2003 Robert Griebl <sandman@handhelds.org>
-
-
- =.
- .=l.
+ Copyright (C) 2004, 2005 Holger Hans Peter Freyther <freyther@handhelds.org>
+ =. Copyright (C) 2004, 2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
+ .=l. Copyright (C) 2002, 2003 Robert Griebl <sandman@handhelds.org>
           .>+-=
 _;:,     .>    :=|. This program is free software; you can
@@ -13,6 +9,6 @@
:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
.="- .-=="i,     .._ License as published by the Free Software
- - .   .-<_>     .<> Foundation; either version 2 of the License,
-     ._= =}       : or (at your option) any later version.
+ - .   .-<_>     .<> Foundation; version 2 of the License.
+     ._= =}       :
    .%`+i>       _;_.
    .i_,=:_.      -<s. This program is distributed in the hope that
@@ -34,4 +30,6 @@
#include "odevice_abstractmobiledevice.h"
+#include <qpe/qcopenvelope_qws.h>
+
#include <sys/time.h>
#include <sys/ioctl.h>
@@ -65,5 +63,6 @@ bool OAbstractMobileDevice::suspend() {
bool res = false;
- ODevice::sendSuspendmsg();
+
+ QCopEnvelope( "QPE/System", "aboutToSuspend()" );
struct timeval tvs, tvn;
@@ -85,4 +84,6 @@ bool OAbstractMobileDevice::suspend() {
return res;
+
+ QCopEnvelope( "QPE/System", "returnFromSuspend()" );
}