summaryrefslogtreecommitdiff
path: root/core
authorzecke <zecke>2002-10-07 14:59:17 (UTC)
committer zecke <zecke>2002-10-07 14:59:17 (UTC)
commit645b377506fb32f4519e70d43c020084943debae (patch) (side-by-side diff)
tree95398d3a8aeb0342e08732c203eda5098beb92cb /core
parenta7b03f9c31f515747663f07b6665744369e57ba8 (diff)
downloadopie-645b377506fb32f4519e70d43c020084943debae.zip
opie-645b377506fb32f4519e70d43c020084943debae.tar.gz
opie-645b377506fb32f4519e70d43c020084943debae.tar.bz2
Switch to sorted stuff for TableView as default
Stefan it's safe
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/tableview.cpp7
-rw-r--r--core/pim/todo/todoview.cpp1
2 files changed, 6 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() {
return cur;
}
QString TableView::currentRepresentation() {
return text( currentRow(), 2);
}
/* show overdue */
void TableView::showOverDue( bool ) {
clear();
updateView();
}
void TableView::updateView( ) {
+ setSortOrder( 0 );
+ setAscending( true );
+ sort();
OTodoAccess::List::Iterator it, end;
- it = list().begin();
- end = list().end();
+ it = sorted().begin();
+ end = sorted().end();
qWarning("setTodos");
QTime time;
time.start();
m_enablePaint = false;
setUpdatesEnabled( false );
viewport()->setUpdatesEnabled( false );
clear();
QString currentCat = todoWindow()->currentCategory();
bool showCompleted = todoWindow()->showCompleted();
bool showOverDue = todoWindow()->showOverDue();
qWarning( "Current Category:" + todoWindow()->currentCategory() );
int id = todoWindow()->currentCatId();
diff --git a/core/pim/todo/todoview.cpp b/core/pim/todo/todoview.cpp
index b77baed..06eaaa9 100644
--- a/core/pim/todo/todoview.cpp
+++ b/core/pim/todo/todoview.cpp
@@ -50,24 +50,25 @@ MainWindow* TodoView::todoWindow() {
}
OTodo TodoView::event(int uid ) { return m_main->event( uid ); }
OTodoAccess::List TodoView::list(){
todoWindow()->updateList();
return todoWindow()->list();
}
OTodoAccess::List TodoView::sorted(){
return m_sort;
}
void TodoView::sort() {
m_sort = todoWindow()->sorted(m_asc,m_sortOrder );
+ qWarning("m_sort.count() = %d", m_sort.count() );
}
void TodoView::sort(int sort) {
m_sort = todoWindow()->sorted(m_asc, m_sortOrder, sort );
}
void TodoView::setSortOrder( int order ) {
m_sortOrder = order;
}
void TodoView::setAscending( bool b ) {
m_asc = b;
}
void TodoView::update(int uid, const SmallTodo& to ) {
//m_main->slotUpate1( uid, to );