summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/todolist
authorharlekin <harlekin>2002-10-11 17:18:08 (UTC)
committer harlekin <harlekin>2002-10-11 17:18:08 (UTC)
commit3f29dc777e7f0a5c2a9b44521b486c69b610c13a (patch) (side-by-side diff)
tree5b1019cbf47625faad281959497c4a2e6ea6678e /core/pim/today/plugins/todolist
parent526ee9ecc0e9b35dfff85f37ece86ab628efd47e (diff)
downloadopie-3f29dc777e7f0a5c2a9b44521b486c69b610c13a.zip
opie-3f29dc777e7f0a5c2a9b44521b486c69b610c13a.tar.gz
opie-3f29dc777e7f0a5c2a9b44521b486c69b610c13a.tar.bz2
added more whatsthis
Diffstat (limited to 'core/pim/today/plugins/todolist') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/todolist/todopluginconfig.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/core/pim/today/plugins/todolist/todopluginconfig.cpp b/core/pim/today/plugins/todolist/todopluginconfig.cpp
index 110b2e0..56b7aa2 100644
--- a/core/pim/today/plugins/todolist/todopluginconfig.cpp
+++ b/core/pim/today/plugins/todolist/todopluginconfig.cpp
@@ -22,6 +22,7 @@
#include <qhbox.h>
#include <qtoolbutton.h>
#include <qlabel.h>
+#include <qwhatsthis.h>
@@ -34,20 +35,22 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
QHBox *box1 = new QHBox( this );
QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" );
- TextLabel6->setText( tr( "How many\n tasks should \n"
- "be shown?" ) );
+ TextLabel6->setText( tr( "tasks shown " ) );
SpinBox2 = new QSpinBox( box1, "SpinBox2" );
SpinBox2->setMaxValue( 40 );
+ QWhatsThis::add( SpinBox2 , tr( "Set the maximum number of task that should be shown" ) );
+
+
QHBox *box2 = new QHBox( this );
QLabel* clipLabel = new QLabel( box2, "" );
- clipLabel->setText( tr( "Clip line after\n X chars" ) );
+ clipLabel->setText( tr( "Clip line after X chars" ) );
SpinBoxClip = new QSpinBox( box2, "SpinClip" );
SpinBoxClip->setMaxValue( 200 );
-
+ QWhatsThis::add( SpinBoxClip , tr( "After how many chars should be the info about the task be cut off" ) );
layout->addWidget( box1 );
layout->addWidget( box2 );