summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/todolist/todopluginconfig.cpp
authorharlekin <harlekin>2002-09-22 22:29:34 (UTC)
committer harlekin <harlekin>2002-09-22 22:29:34 (UTC)
commita26d188b7b91f9bdce1e6a44c40ce874cd50abde (patch) (side-by-side diff)
tree26a7efeca0a0778d3a96f876cb030dd414a177be /core/pim/today/plugins/todolist/todopluginconfig.cpp
parente49230a12104b718c46a34c81b6c0e608c9d40be (diff)
downloadopie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.zip
opie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.tar.gz
opie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.tar.bz2
interface updates
Diffstat (limited to 'core/pim/today/plugins/todolist/todopluginconfig.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/todolist/todopluginconfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/today/plugins/todolist/todopluginconfig.cpp b/core/pim/today/plugins/todolist/todopluginconfig.cpp
index 69ad727..110b2e0 100644
--- a/core/pim/today/plugins/todolist/todopluginconfig.cpp
+++ b/core/pim/today/plugins/todolist/todopluginconfig.cpp
@@ -5,49 +5,49 @@
* email : harlekin@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 "todopluginconfig.h"
#include <qpe/config.h>
#include <qlayout.h>
#include <qhbox.h>
#include <qtoolbutton.h>
#include <qlabel.h>
TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
- : ConfigWidget(parent, name ) {
+ : TodayConfigWidget(parent, name ) {
QVBoxLayout * layout = new QVBoxLayout( this );
layout->setMargin( 20 );
QHBox *box1 = new QHBox( this );
QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" );
TextLabel6->setText( tr( "How many\n tasks should \n"
"be shown?" ) );
SpinBox2 = new QSpinBox( box1, "SpinBox2" );
SpinBox2->setMaxValue( 40 );
QHBox *box2 = new QHBox( this );
QLabel* clipLabel = new QLabel( box2, "" );
clipLabel->setText( tr( "Clip line after\n X chars" ) );
SpinBoxClip = new QSpinBox( box2, "SpinClip" );
SpinBoxClip->setMaxValue( 200 );
layout->addWidget( box1 );
layout->addWidget( box2 );