summaryrefslogtreecommitdiff
path: root/noncore
authorzecke <zecke>2004-01-27 19:00:49 (UTC)
committer zecke <zecke>2004-01-27 19:00:49 (UTC)
commit6e34e6e90f3ea6a18101395afc7cf5fe86c427e8 (patch) (unidiff)
tree6577258b34f19c75c96d03667405ff6d7940c55c /noncore
parentec32e99fae963a97b527c2c54813a96c284d99cf (diff)
downloadopie-6e34e6e90f3ea6a18101395afc7cf5fe86c427e8.zip
opie-6e34e6e90f3ea6a18101395afc7cf5fe86c427e8.tar.gz
opie-6e34e6e90f3ea6a18101395afc7cf5fe86c427e8.tar.bz2
return QS_FALSE if interface is not implemented
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/autorotateapplet/autorotateimpl.cpp3
-rw-r--r--noncore/applets/notesapplet/notesappletimpl.cpp2
-rw-r--r--noncore/applets/wirelessapplet/wirelessappletimpl.cpp4
3 files changed, 7 insertions, 2 deletions
diff --git a/noncore/applets/autorotateapplet/autorotateimpl.cpp b/noncore/applets/autorotateapplet/autorotateimpl.cpp
index 01d8a01..1b15c6d 100644
--- a/noncore/applets/autorotateapplet/autorotateimpl.cpp
+++ b/noncore/applets/autorotateapplet/autorotateimpl.cpp
@@ -25,13 +25,14 @@ int AutoRotateImpl::position() const {
25QRESULT AutoRotateImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) { 25QRESULT AutoRotateImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) {
26 *iface = 0; 26 *iface = 0;
27 if ( uuid == IID_QUnknown ) { 27 if ( uuid == IID_QUnknown ) {
28 *iface = this; 28 *iface = this;
29 } else if ( uuid == IID_TaskbarApplet ) { 29 } else if ( uuid == IID_TaskbarApplet ) {
30 *iface = this; 30 *iface = this;
31 } 31 } else
32 return QS_FALSE;
32 33
33 if ( *iface ) { 34 if ( *iface ) {
34 (*iface)->addRef(); 35 (*iface)->addRef();
35 } 36 }
36 return QS_OK; 37 return QS_OK;
37} 38}
diff --git a/noncore/applets/notesapplet/notesappletimpl.cpp b/noncore/applets/notesapplet/notesappletimpl.cpp
index 0526bad..93de433 100644
--- a/noncore/applets/notesapplet/notesappletimpl.cpp
+++ b/noncore/applets/notesapplet/notesappletimpl.cpp
@@ -35,12 +35,14 @@ int NotesAppletImpl::position() const {
35QRESULT NotesAppletImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) { 35QRESULT NotesAppletImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) {
36 *iface = 0; 36 *iface = 0;
37 if ( uuid == IID_QUnknown ) 37 if ( uuid == IID_QUnknown )
38 *iface = this; 38 *iface = this;
39 else if ( uuid == IID_TaskbarApplet ) 39 else if ( uuid == IID_TaskbarApplet )
40 *iface = this; 40 *iface = this;
41 else
42 return QS_FALSE;
41 43
42 if ( *iface ) 44 if ( *iface )
43 (*iface)->addRef(); 45 (*iface)->addRef();
44 return QS_OK; 46 return QS_OK;
45} 47}
46 48
diff --git a/noncore/applets/wirelessapplet/wirelessappletimpl.cpp b/noncore/applets/wirelessapplet/wirelessappletimpl.cpp
index eb00459..8b7afcf 100644
--- a/noncore/applets/wirelessapplet/wirelessappletimpl.cpp
+++ b/noncore/applets/wirelessapplet/wirelessappletimpl.cpp
@@ -47,13 +47,15 @@ QRESULT WirelessAppletImpl::queryInterface( const QUuid &uuid, QUnknownInterface
47{ 47{
48 *iface = 0; 48 *iface = 0;
49 if ( uuid == IID_QUnknown ) 49 if ( uuid == IID_QUnknown )
50 *iface = this; 50 *iface = this;
51 else if ( uuid == IID_TaskbarApplet ) 51 else if ( uuid == IID_TaskbarApplet )
52 *iface = this; 52 *iface = this;
53 53 else
54 return QS_FALSE;
55
54 if ( *iface ) 56 if ( *iface )
55 (*iface)->addRef(); 57 (*iface)->addRef();
56 return QS_OK; 58 return QS_OK;
57} 59}
58 60
59Q_EXPORT_INTERFACE() 61Q_EXPORT_INTERFACE()