author | zautrix <zautrix> | 2004-10-27 15:32:48 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-27 15:32:48 (UTC) |
commit | fd728bc89b6a04fac0bbc590da7dd6f488822ef6 (patch) (side-by-side diff) | |
tree | 74e0cb5f3b06348971aac8f3f236926358eb3437 | |
parent | e099c37ac90e95c5a3110941aaae2be229bccb8e (diff) | |
download | kdepimpi-fd728bc89b6a04fac0bbc590da7dd6f488822ef6.zip kdepimpi-fd728bc89b6a04fac0bbc590da7dd6f488822ef6.tar.gz kdepimpi-fd728bc89b6a04fac0bbc590da7dd6f488822ef6.tar.bz2 |
fixed apalm apllet
-rw-r--r-- | kalarmd/simplealarmdaemonapplet.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kalarmd/simplealarmdaemonapplet.cpp b/kalarmd/simplealarmdaemonapplet.cpp index 94d8428..38a744f 100644 --- a/kalarmd/simplealarmdaemonapplet.cpp +++ b/kalarmd/simplealarmdaemonapplet.cpp @@ -33,26 +33,27 @@ QWidget *SimpleAlarmDaemonApplet::applet( QWidget *parent ) } return mApplet; } int SimpleAlarmDaemonApplet::position() const { return 7; } QRESULT SimpleAlarmDaemonApplet::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) { *iface = 0; if ( uuid == IID_QUnknown ) *iface = this; else if ( uuid == IID_TaskbarApplet ) *iface = this; - - if ( *iface ) - (*iface)->addRef(); + if ( *iface ) { + //(*iface)->addRef(); return QS_OK; } + return QE_NOCOMPONENT; +} Q_EXPORT_INTERFACE() { Q_CREATE_INSTANCE( SimpleAlarmDaemonApplet ) } |