summaryrefslogtreecommitdiff
path: root/core/pim/todo
authorzecke <zecke>2002-11-15 10:01:40 (UTC)
committer zecke <zecke>2002-11-15 10:01:40 (UTC)
commit39f256de174af80fd8ba2560e8586dda99d06b7d (patch) (unidiff)
treed03da9996c67044b5593bae5726231214535dafc /core/pim/todo
parentec92de66e81b145119ff15bea0ad88436eb7bd4b (diff)
downloadopie-39f256de174af80fd8ba2560e8586dda99d06b7d.zip
opie-39f256de174af80fd8ba2560e8586dda99d06b7d.tar.gz
opie-39f256de174af80fd8ba2560e8586dda99d06b7d.tar.bz2
Fix the DueDate button not beeing enabled when it should
Diffstat (limited to 'core/pim/todo') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/taskeditoroverviewimpl.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/pim/todo/taskeditoroverviewimpl.cpp b/core/pim/todo/taskeditoroverviewimpl.cpp
index c10ad40..24b3386 100644
--- a/core/pim/todo/taskeditoroverviewimpl.cpp
+++ b/core/pim/todo/taskeditoroverviewimpl.cpp
@@ -46,6 +46,7 @@ void TaskEditorOverViewImpl::load( const OTodo& todo) {
46 46
47 ckbDue->setChecked( todo.hasDueDate() ); 47 ckbDue->setChecked( todo.hasDueDate() );
48 btnDue->setText( TimeString::longDateString( todo.dueDate() ) ); 48 btnDue->setText( TimeString::longDateString( todo.dueDate() ) );
49 btnDue->setEnabled( todo.hasDueDate() );
49 50
50 cmbPrio->setCurrentItem( todo.priority() -1 ); 51 cmbPrio->setCurrentItem( todo.priority() -1 );
51 ckbCompleted->setChecked( todo.isCompleted() ); 52 ckbCompleted->setChecked( todo.isCompleted() );