author | kergoth <kergoth> | 2002-11-04 18:04:32 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-04 18:04:32 (UTC) |
commit | 0a5e146cb095c5d3920856f7a59fe3607ccf5316 (patch) (unidiff) | |
tree | 6a6521c411d4dbf4fe49d2242d74d84964f9f539 | |
parent | 5cbfe369f69a9f2ad40f6f93600738c67a9440f8 (diff) | |
download | opie-0a5e146cb095c5d3920856f7a59fe3607ccf5316.zip opie-0a5e146cb095c5d3920856f7a59fe3607ccf5316.tar.gz opie-0a5e146cb095c5d3920856f7a59fe3607ccf5316.tar.bz2 |
Remove unnecessary qWarning
-rw-r--r-- | noncore/todayplugins/fortune/fortunepluginimpl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/noncore/todayplugins/fortune/fortunepluginimpl.cpp b/noncore/todayplugins/fortune/fortunepluginimpl.cpp index 7ef24e9..4844f74 100644 --- a/noncore/todayplugins/fortune/fortunepluginimpl.cpp +++ b/noncore/todayplugins/fortune/fortunepluginimpl.cpp | |||
@@ -32,13 +32,12 @@ TodayPluginObject* FortunePluginImpl::guiPart() | |||
32 | return fortunePlugin; | 32 | return fortunePlugin; |
33 | } | 33 | } |
34 | 34 | ||
35 | QRESULT FortunePluginImpl::queryInterface( const QUuid & uuid, QUnknownInterface **iface ) | 35 | QRESULT FortunePluginImpl::queryInterface( const QUuid & uuid, QUnknownInterface **iface ) |
36 | { | 36 | { |
37 | *iface = 0; | 37 | *iface = 0; |
38 | qWarning("FortunePluginImpl::queryInterface called\n"); | ||
39 | if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) { | 38 | if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) { |
40 | *iface = this, (*iface)->addRef(); | 39 | *iface = this, (*iface)->addRef(); |
41 | } | 40 | } |
42 | return QS_OK; | 41 | return QS_OK; |
43 | 42 | ||
44 | } | 43 | } |