summaryrefslogtreecommitdiff
authorharlekin <harlekin>2003-04-03 17:45:37 (UTC)
committer harlekin <harlekin>2003-04-03 17:45:37 (UTC)
commit934e4d81bc078c704a39f02663607a6c16a5b29f (patch) (side-by-side diff)
tree8897e81843a41418b8a7e42c22f10207b163cad1
parentf62005c53c93148eaa13eac50ea6814a41afb216 (diff)
downloadopie-934e4d81bc078c704a39f02663607a6c16a5b29f.zip
opie-934e4d81bc078c704a39f02663607a6c16a5b29f.tar.gz
opie-934e4d81bc078c704a39f02663607a6c16a5b29f.tar.bz2
set max days ahead to 21, closes #815
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookpluginconfig.cpp2
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
@@ -45,49 +45,49 @@ DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name)
QHBox *box3 = new QHBox( this );
QLabel* TextLabel6 = new QLabel( box3, "All Day");
TextLabel6->setText( tr( "Show only later\n appointments") );
CheckBox3 = new QCheckBox ( box3, "CheckBox3" );
QWhatsThis::add( CheckBox3 , tr( "Check this if only appointments later then current time should be shown" ) );
QHBox *box4 = new QHBox( this );
QLabel *TextLabel3 = new QLabel( box4, "TextLabel3" );
TextLabel3->setText( tr( "How many \nappointment\n"
"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();
}
void DatebookPluginConfig::readConfig() {
Config cfg( "todaydatebookplugin" );
cfg.setGroup( "config" );
m_max_lines_meet = cfg.readNumEntry( "maxlinesmeet", 5 );
SpinBox1->setValue( m_max_lines_meet );
m_show_location = cfg.readNumEntry( "showlocation", 1 );
CheckBox1->setChecked( m_show_location );
m_show_notes = cfg.readNumEntry( "shownotes", 0 );
CheckBox2->setChecked( m_show_notes );
m_only_later = cfg.readNumEntry( "onlylater", 1 );
CheckBox3->setChecked( m_only_later );