summaryrefslogtreecommitdiff
path: root/libopie2/opieui/otaskbarapplet.h
authorzecke <zecke>2004-01-27 18:56:29 (UTC)
committer zecke <zecke>2004-01-27 18:56:29 (UTC)
commitec32e99fae963a97b527c2c54813a96c284d99cf (patch) (unidiff)
tree6ccfe6c127c8f9a32e1fa6cf6eb5385bd18f9267 /libopie2/opieui/otaskbarapplet.h
parent829b13ec0e4ffb359ab39c16c564719908173ffa (diff)
downloadopie-ec32e99fae963a97b527c2c54813a96c284d99cf.zip
opie-ec32e99fae963a97b527c2c54813a96c284d99cf.tar.gz
opie-ec32e99fae963a97b527c2c54813a96c284d99cf.tar.bz2
Guess what? return QS_FALSE;
Diffstat (limited to 'libopie2/opieui/otaskbarapplet.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/otaskbarapplet.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libopie2/opieui/otaskbarapplet.h b/libopie2/opieui/otaskbarapplet.h
index 686b91a..773aba4 100644
--- a/libopie2/opieui/otaskbarapplet.h
+++ b/libopie2/opieui/otaskbarapplet.h
@@ -55,12 +55,14 @@ template<class T> class OTaskbarAppletWrapper : public TaskbarAppletInterface
55 qDebug( "OTaskbarAppletWrapper::queryInterface()" ); 55 qDebug( "OTaskbarAppletWrapper::queryInterface()" );
56 *iface = 0; 56 *iface = 0;
57 if ( uuid == IID_QUnknown ) 57 if ( uuid == IID_QUnknown )
58 *iface = this; 58 *iface = this;
59 else if ( uuid == IID_TaskbarApplet ) 59 else if ( uuid == IID_TaskbarApplet )
60 *iface = this; 60 *iface = this;
61 else
62 return QS_FALSE;
61 63
62 if ( *iface ) (*iface)->addRef(); 64 if ( *iface ) (*iface)->addRef();
63 return QS_OK; 65 return QS_OK;
64 } 66 }
65 67
66 Q_REFCOUNT 68 Q_REFCOUNT