author | kergoth <kergoth> | 2002-11-04 18:04:32 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-04 18:04:32 (UTC) |
commit | 0a5e146cb095c5d3920856f7a59fe3607ccf5316 (patch) (side-by-side diff) | |
tree | 6a6521c411d4dbf4fe49d2242d74d84964f9f539 /noncore | |
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 @@ -1,49 +1,48 @@ /* * fortunepluginimpl.cpp * * copyright : (c) 2002 by Chris Larson * email : kergoth@handhelds.org * */ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "fortuneplugin.h" #include "fortunepluginimpl.h" FortunePluginImpl::FortunePluginImpl() { fortunePlugin = new FortunePlugin(); } FortunePluginImpl::~FortunePluginImpl() { } TodayPluginObject* FortunePluginImpl::guiPart() { return fortunePlugin; } QRESULT FortunePluginImpl::queryInterface( const QUuid & uuid, QUnknownInterface **iface ) { *iface = 0; - qWarning("FortunePluginImpl::queryInterface called\n"); if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) { *iface = this, (*iface)->addRef(); } return QS_OK; } Q_EXPORT_INTERFACE() { Q_CREATE_INSTANCE( FortunePluginImpl ); } |