author | zecke <zecke> | 2004-01-27 19:00:49 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-01-27 19:00:49 (UTC) |
commit | 6e34e6e90f3ea6a18101395afc7cf5fe86c427e8 (patch) (side-by-side diff) | |
tree | 6577258b34f19c75c96d03667405ff6d7940c55c /noncore/applets/notesapplet | |
parent | ec32e99fae963a97b527c2c54813a96c284d99cf (diff) | |
download | opie-6e34e6e90f3ea6a18101395afc7cf5fe86c427e8.zip opie-6e34e6e90f3ea6a18101395afc7cf5fe86c427e8.tar.gz opie-6e34e6e90f3ea6a18101395afc7cf5fe86c427e8.tar.bz2 |
return QS_FALSE if interface is not implemented
-rw-r--r-- | noncore/applets/notesapplet/notesappletimpl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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 @@ -38,6 +38,8 @@ QRESULT NotesAppletImpl::queryInterface( const QUuid &uuid, QUnknownInterface ** *iface = this; else if ( uuid == IID_TaskbarApplet ) *iface = this; + else + return QS_FALSE; if ( *iface ) (*iface)->addRef(); |