summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/datebook/datebookplugin.cpp
authorharlekin <harlekin>2002-09-18 15:03:24 (UTC)
committer harlekin <harlekin>2002-09-18 15:03:24 (UTC)
commitdd4b256d39e7a438a7d688471d257dd10a75d138 (patch) (unidiff)
treed2e4a84f5b150ff0dc85b47a5ac9cee82d135cff /core/pim/today/plugins/datebook/datebookplugin.cpp
parent6008e7d286293a87fca4ff43729bdfa66d700989 (diff)
downloadopie-dd4b256d39e7a438a7d688471d257dd10a75d138.zip
opie-dd4b256d39e7a438a7d688471d257dd10a75d138.tar.gz
opie-dd4b256d39e7a438a7d688471d257dd10a75d138.tar.bz2
use bool where bool is ment
Diffstat (limited to 'core/pim/today/plugins/datebook/datebookplugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookplugin.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/pim/today/plugins/datebook/datebookplugin.cpp b/core/pim/today/plugins/datebook/datebookplugin.cpp
index 9800e61..07f5005 100644
--- a/core/pim/today/plugins/datebook/datebookplugin.cpp
+++ b/core/pim/today/plugins/datebook/datebookplugin.cpp
@@ -1,12 +1,13 @@
1
1/* 2/*
2 * datebookplugin.cpp 3 * datebookplugin.cpp
3 * 4 *
4 * copyright : (c) 2002 by Maximilian Reiß 5 * copyright : (c) 2002 by Maximilian Reiß
5 * email : harlekin@handhelds.org 6 * email : harlekin@handhelds.org
6 * 7 *
7 */ 8 */
8/*************************************************************************** 9/***************************************************************************
9 * * 10 * *
10 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
@@ -24,25 +25,25 @@
24 25
25DatebookPlugin::DatebookPlugin() { 26DatebookPlugin::DatebookPlugin() {
26} 27}
27 28
28DatebookPlugin::~DatebookPlugin() { 29DatebookPlugin::~DatebookPlugin() {
29} 30}
30 31
31QString DatebookPlugin::pluginName() const { 32QString DatebookPlugin::pluginName() const {
32 return "Datebook plugin"; 33 return "Datebook plugin";
33} 34}
34 35
35double DatebookPlugin::versionNumber() const { 36double DatebookPlugin::versionNumber() const {
36 return 0.1; 37 return 1.0;
37} 38}
38 39
39QString DatebookPlugin::pixmapNameWidget() const { 40QString DatebookPlugin::pixmapNameWidget() const {
40 return "DateBook"; 41 return "DateBook";
41} 42}
42 43
43QWidget* DatebookPlugin::widget( QWidget* wid ) { 44QWidget* DatebookPlugin::widget( QWidget* wid ) {
44 return new DatebookPluginWidget( wid, "Datebook" ); 45 return new DatebookPluginWidget( wid, "Datebook" );
45} 46}
46 47
47QString DatebookPlugin::pixmapNameConfig() const { 48QString DatebookPlugin::pixmapNameConfig() const {
48 return "DateBook"; 49 return "DateBook";