summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/todolist
Side-by-side diff
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
@@ -24,2 +24,3 @@
#include <qlabel.h>
+#include <qwhatsthis.h>
@@ -36,4 +37,3 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" );
- TextLabel6->setText( tr( "How many\n tasks should \n"
- "be shown?" ) );
+ TextLabel6->setText( tr( "tasks shown " ) );
@@ -41,2 +41,5 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
SpinBox2->setMaxValue( 40 );
+ QWhatsThis::add( SpinBox2 , tr( "Set the maximum number of task that should be shown" ) );
+
+
@@ -45,3 +48,3 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
QLabel* clipLabel = new QLabel( box2, "" );
- clipLabel->setText( tr( "Clip line after\n X chars" ) );
+ clipLabel->setText( tr( "Clip line after X chars" ) );
@@ -49,3 +52,3 @@ TodolistPluginConfig::TodolistPluginConfig( QWidget *parent, const char* name)
SpinBoxClip->setMaxValue( 200 );
-
+ QWhatsThis::add( SpinBoxClip , tr( "After how many chars should be the info about the task be cut off" ) );
layout->addWidget( box1 );