author | zecke <zecke> | 2004-01-27 18:56:29 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-01-27 18:56:29 (UTC) |
commit | ec32e99fae963a97b527c2c54813a96c284d99cf (patch) (side-by-side diff) | |
tree | 6ccfe6c127c8f9a32e1fa6cf6eb5385bd18f9267 /noncore | |
parent | 829b13ec0e4ffb359ab39c16c564719908173ffa (diff) | |
download | opie-ec32e99fae963a97b527c2c54813a96c284d99cf.zip opie-ec32e99fae963a97b527c2c54813a96c284d99cf.tar.gz opie-ec32e99fae963a97b527c2c54813a96c284d99cf.tar.bz2 |
Guess what? return QS_FALSE;
3 files changed, 8 insertions, 3 deletions
diff --git a/noncore/todayplugins/fortune/fortunepluginimpl.cpp b/noncore/todayplugins/fortune/fortunepluginimpl.cpp index 466e322..090aaa7 100644 --- a/noncore/todayplugins/fortune/fortunepluginimpl.cpp +++ b/noncore/todayplugins/fortune/fortunepluginimpl.cpp @@ -40,3 +40,5 @@ QRESULT FortunePluginImpl::queryInterface( const QUuid & uuid, QUnknownInterfac *iface = this, (*iface)->addRef(); - } + }else + return QS_FALSE; + return QS_OK; diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp index c17781b..ec3e34d 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp @@ -38,3 +38,5 @@ QRESULT StockTickerPluginImpl::queryInterface( const QUuid & uuid, QUnknownInte *iface = this, (*iface)->addRef(); - } + }else + return QS_FALSE; + return QS_OK; diff --git a/noncore/todayplugins/weather/weatherpluginimpl.cpp b/noncore/todayplugins/weather/weatherpluginimpl.cpp index 1a7c27b..fd32a44 100644 --- a/noncore/todayplugins/weather/weatherpluginimpl.cpp +++ b/noncore/todayplugins/weather/weatherpluginimpl.cpp @@ -53,3 +53,4 @@ QRESULT WeatherPluginImpl::queryInterface( const QUuid &uuid, QUnknownInterface *iface = this, (*iface)->addRef(); - } + }else + return QS_FALSE; |