author | sandman <sandman> | 2002-10-13 16:15:30 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-13 16:15:30 (UTC) |
commit | 93133ba6cc82398012c8f7206a7e9a270a04edc6 (patch) (unidiff) | |
tree | f2af0d8b8d456077a9e91289290d4c19d120ae90 | |
parent | 467451d6d19a2cf5245afa2d219b7d2b1cd008f5 (diff) | |
download | opie-93133ba6cc82398012c8f7206a7e9a270a04edc6.zip opie-93133ba6cc82398012c8f7206a7e9a270a04edc6.tar.gz opie-93133ba6cc82398012c8f7206a7e9a270a04edc6.tar.bz2 |
changed to reflect the qcop interface cleanup of the launcher
-rw-r--r-- | core/applets/homeapplet/home.cpp | 2 | ||||
-rw-r--r-- | core/applets/suspendapplet/suspend.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/homeapplet/home.cpp b/core/applets/homeapplet/home.cpp index 3670e6d..0d4ad66 100644 --- a/core/applets/homeapplet/home.cpp +++ b/core/applets/homeapplet/home.cpp | |||
@@ -49,7 +49,7 @@ QPopupMenu *HomeApplet::popup ( QWidget * ) const | |||
49 | void HomeApplet::activated ( ) | 49 | void HomeApplet::activated ( ) |
50 | { | 50 | { |
51 | // to desktop (home) | 51 | // to desktop (home) |
52 | QCopEnvelope ( "QPE/Desktop", "home()" ); | 52 | QCopEnvelope ( "QPE/Application/qpe", "raise()" ); |
53 | } | 53 | } |
54 | 54 | ||
55 | 55 | ||
diff --git a/core/applets/suspendapplet/suspend.cpp b/core/applets/suspendapplet/suspend.cpp index e9861e8..b502e87 100644 --- a/core/applets/suspendapplet/suspend.cpp +++ b/core/applets/suspendapplet/suspend.cpp | |||
@@ -49,7 +49,7 @@ QPopupMenu *SuspendApplet::popup ( QWidget * ) const | |||
49 | void SuspendApplet::activated ( ) | 49 | void SuspendApplet::activated ( ) |
50 | { | 50 | { |
51 | // suspend | 51 | // suspend |
52 | QCopEnvelope ( "QPE/Desktop", "suspend()" ); | 52 | QCopEnvelope ( "QPE/System", "suspend()" ); |
53 | } | 53 | } |
54 | 54 | ||
55 | 55 | ||