author | zecke <zecke> | 2004-01-27 18:48:09 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-01-27 18:48:09 (UTC) |
commit | fbe767bcc9f46f1d9bf680dc91eba983bc39fdeb (patch) (side-by-side diff) | |
tree | 453b0a48a4e40316ea377b0b4a05a39a16849136 /core/applets/suspendapplet | |
parent | 068604863e009b20790cd2aa482e216eb40b8876 (diff) | |
download | opie-fbe767bcc9f46f1d9bf680dc91eba983bc39fdeb.zip opie-fbe767bcc9f46f1d9bf680dc91eba983bc39fdeb.tar.gz opie-fbe767bcc9f46f1d9bf680dc91eba983bc39fdeb.tar.bz2 |
Funny what my SDK all triggers
Ok the reason to use a bool as return type is that you can
say that something worked or not worked.
So if we don't implement the given interface don't lie!!
-rw-r--r-- | core/applets/suspendapplet/suspend.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/applets/suspendapplet/suspend.cpp b/core/applets/suspendapplet/suspend.cpp index 4bdc8fb..63f16b8 100644 --- a/core/applets/suspendapplet/suspend.cpp +++ b/core/applets/suspendapplet/suspend.cpp @@ -71,6 +71,8 @@ QRESULT SuspendApplet::queryInterface ( const QUuid &uuid, QUnknownInterface **i *iface = this; else if ( uuid == IID_MenuApplet ) *iface = this; + else + return QS_FALSE; if ( *iface ) (*iface)-> addRef ( ); |