-rw-r--r-- | core/pim/today/plugins/datebook/datebookpluginconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/today/plugins/datebook/datebookpluginconfig.cpp b/core/pim/today/plugins/datebook/datebookpluginconfig.cpp index dc6dee9..0477122 100644 --- a/core/pim/today/plugins/datebook/datebookpluginconfig.cpp +++ b/core/pim/today/plugins/datebook/datebookpluginconfig.cpp @@ -57,25 +57,25 @@ DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name) "should be \nshown?" ) ); SpinBox1 = new QSpinBox( box4, "SpinBox1" ); QWhatsThis::add( SpinBox1 , tr( "How many appointments should be shown maximal. In chronical order" ) ); SpinBox1->setMaxValue( 10 ); SpinBox1->setValue( 5 ); QHBox *box5 = new QHBox( this ); QLabel *TextLabelDays = new QLabel( box5 ); TextLabelDays->setText( tr( "How many more days" ) ); SpinBox2 = new QSpinBox( box5, "SpinBox2" ); QWhatsThis::add( SpinBox2 , tr( "How many more days should be in the range" ) ); - SpinBox2->setMaxValue( 7 ); + SpinBox2->setMaxValue( 21 ); SpinBox2->setSuffix( tr( " day(s)" ) ); SpinBox2->setSpecialValueText ( tr("only today") ); layout->addWidget( box1 ); layout->addWidget( box2 ); layout->addWidget( box3 ); layout->addWidget( box4 ); layout->addWidget( box5 ); readConfig(); } |