summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/fortune/fortuneplugin.cpp
Side-by-side diff
Diffstat (limited to 'noncore/todayplugins/fortune/fortuneplugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/fortune/fortuneplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/todayplugins/fortune/fortuneplugin.cpp b/noncore/todayplugins/fortune/fortuneplugin.cpp
index 69d2c45..4461219 100644
--- a/noncore/todayplugins/fortune/fortuneplugin.cpp
+++ b/noncore/todayplugins/fortune/fortuneplugin.cpp
@@ -1,71 +1,71 @@
/*
* fortuneplugin.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 "fortunepluginwidget.h"
FortunePlugin::FortunePlugin()
{
}
FortunePlugin::~FortunePlugin()
{
}
QString FortunePlugin::pluginName() const
{
return QObject::tr( "Fortune plugin" );
}
double FortunePlugin::versionNumber() const
{
return 0.1;
}
QString FortunePlugin::pixmapNameWidget() const
{
return "Fortune";
}
QWidget* FortunePlugin::widget( QWidget *wid )
{
return new FortunePluginWidget( wid, "Fortune" );
}
QString FortunePlugin::pixmapNameConfig() const
{
return "Fortune";
}
TodayConfigWidget* FortunePlugin::configWidget( QWidget* /*wid*/ )
{
// return new FortunePluginConfig( wid , "Fortune" );
- return NULL;
+ return 0l;
}
QString FortunePlugin::appName() const
{
return "fortune";
}
bool FortunePlugin::excludeFromRefresh() const
{
return false;
}