summaryrefslogtreecommitdiff
path: root/core/pim/todo/tableview.cpp
Unidiff
Diffstat (limited to 'core/pim/todo/tableview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/tableview.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/pim/todo/tableview.cpp b/core/pim/todo/tableview.cpp
index 097af39..eaaf1bc 100644
--- a/core/pim/todo/tableview.cpp
+++ b/core/pim/todo/tableview.cpp
@@ -133,27 +133,30 @@ int TableView::current() {
133 return cur; 133 return cur;
134} 134}
135QString TableView::currentRepresentation() { 135QString TableView::currentRepresentation() {
136 return text( currentRow(), 2); 136 return text( currentRow(), 2);
137} 137}
138/* show overdue */ 138/* show overdue */
139void TableView::showOverDue( bool ) { 139void TableView::showOverDue( bool ) {
140 clear(); 140 clear();
141 updateView(); 141 updateView();
142} 142}
143 143
144void TableView::updateView( ) { 144void TableView::updateView( ) {
145 setSortOrder( 0 );
146 setAscending( true );
147 sort();
145 OTodoAccess::List::Iterator it, end; 148 OTodoAccess::List::Iterator it, end;
146 it = list().begin(); 149 it = sorted().begin();
147 end = list().end(); 150 end = sorted().end();
148 qWarning("setTodos"); 151 qWarning("setTodos");
149 QTime time; 152 QTime time;
150 time.start(); 153 time.start();
151 m_enablePaint = false; 154 m_enablePaint = false;
152 setUpdatesEnabled( false ); 155 setUpdatesEnabled( false );
153 viewport()->setUpdatesEnabled( false ); 156 viewport()->setUpdatesEnabled( false );
154 clear(); 157 clear();
155 QString currentCat = todoWindow()->currentCategory(); 158 QString currentCat = todoWindow()->currentCategory();
156 bool showCompleted = todoWindow()->showCompleted(); 159 bool showCompleted = todoWindow()->showCompleted();
157 bool showOverDue = todoWindow()->showOverDue(); 160 bool showOverDue = todoWindow()->showOverDue();
158 qWarning( "Current Category:" + todoWindow()->currentCategory() ); 161 qWarning( "Current Category:" + todoWindow()->currentCategory() );
159 int id = todoWindow()->currentCatId(); 162 int id = todoWindow()->currentCatId();