author | drw <drw> | 2005-02-16 19:53:35 (UTC) |
---|---|---|
committer | drw <drw> | 2005-02-16 19:53:35 (UTC) |
commit | 766ac02e5586cd67b75b320fe1abee513384860c (patch) (side-by-side diff) | |
tree | 17fc4e86195a31fe071c183c691464c34c5deae4 | |
parent | 73e64ac16b0c688c77bc650cd8572314cd846188 (diff) | |
download | opie-766ac02e5586cd67b75b320fe1abee513384860c.zip opie-766ac02e5586cd67b75b320fe1abee513384860c.tar.gz opie-766ac02e5586cd67b75b320fe1abee513384860c.tar.bz2 |
Applied Skyhusker's patch for bug #1538
-rw-r--r-- | core/pim/today/plugins/todolist/todopluginwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/today/plugins/todolist/todopluginwidget.cpp b/core/pim/today/plugins/todolist/todopluginwidget.cpp index 7ce703e..5afd0d8 100644 --- a/core/pim/today/plugins/todolist/todopluginwidget.cpp +++ b/core/pim/today/plugins/todolist/todopluginwidget.cpp @@ -91,3 +91,3 @@ void TodolistPluginWidget::getTodo() { // get overdue todos first - m_list = todo->sorted( true, 3, 2, 1); + m_list = todo->sorted( true, OPimTodoAccess::Deadline, OPimTodoAccess::OnlyOverDue, 1); @@ -105,3 +105,3 @@ void TodolistPluginWidget::getTodo() { // get total number of still open todos - m_list = todo->sorted( true, 1, 4, 1); + m_list = todo->sorted( true, 1, OPimTodoAccess::DoNotShowCompleted, 1); |