summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook
authorzecke <zecke>2004-01-27 18:51:03 (UTC)
committer zecke <zecke>2004-01-27 18:51:03 (UTC)
commitb2823e2919b746107b13ebdf603fa04cec8fba72 (patch) (side-by-side diff)
tree2af5f5c5ebae9873605d069dfc2ebceb63d615aa /core/pim/today/plugins/addressbook
parentfbe767bcc9f46f1d9bf680dc91eba983bc39fdeb (diff)
downloadopie-b2823e2919b746107b13ebdf603fa04cec8fba72.zip
opie-b2823e2919b746107b13ebdf603fa04cec8fba72.tar.gz
opie-b2823e2919b746107b13ebdf603fa04cec8fba72.tar.bz2
Return QS_FALSE if we don't implement the interface queried for
Diffstat (limited to 'core/pim/today/plugins/addressbook') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginimpl.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginimpl.cpp b/core/pim/today/plugins/addressbook/addresspluginimpl.cpp
index 54e620e..15cd805 100644
--- a/core/pim/today/plugins/addressbook/addresspluginimpl.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginimpl.cpp
@@ -36,7 +36,9 @@ QRESULT AddressBookPluginImpl::queryInterface( const QUuid & uuid, QUnknownInte
*iface = 0;
if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) {
*iface = this, (*iface)->addRef();
- }
+ }else
+ return QS_FALSE;
+
return QS_OK;
}