From ff3af248587695ad5119057edc5e138acf2664e2 Mon Sep 17 00:00:00 2001 From: zecke Date: Thu, 12 Sep 2002 13:24:35 +0000 Subject: Ok I thought I removed that ok now finally remove setRow code from todotable.h This was committed accidently --- (limited to 'core/pim/todo') diff --git a/core/pim/todo/todotable.cpp b/core/pim/todo/todotable.cpp index 779b28c..15f733b 100644 --- a/core/pim/todo/todotable.cpp +++ b/core/pim/todo/todotable.cpp @@ -231,6 +231,7 @@ TodoTable::TodoTable( QWidget *parent, const char *name ) currFindRow( -2 ), showDeadl( true) { + setNumRows(0); mCat.load( categoryFileName() ); setSorting( TRUE ); setSelectionMode( NoSelection ); @@ -246,7 +247,7 @@ TodoTable::TodoTable( QWidget *parent, const char *name ) setColumnStretchable( 3, FALSE ); setColumnWidth( 3, 20 ); - horizontalHeader()->setLabel( 3, tr( "Deadline" ) ); + horizontalHeader()->setLabel( 3, tr( "Deadline" ) ); if (showDeadl){ showColumn (3); @@ -313,7 +314,7 @@ void TodoTable::slotClicked( int row, int col, int, const QPoint &pos ) emit showDetails( *todo ); } break; - case 3: + case 3: // may as well edit it... menuTimer->stop(); emit signalEdit(); @@ -438,7 +439,7 @@ void TodoTable::updateVisible() { if ( !isUpdatesEnabled() ) return; - + if (showDeadl){ showColumn (3); adjustColumn(3); @@ -452,6 +453,9 @@ void TodoTable::updateVisible() for ( int row = 0; row < numRows(); row++ ) { CheckItem *ci = (CheckItem *)item( row, 0 ); ToDoEvent *t = todoList[ci]; + if (!t) + continue; + QArray vlCats = t->categories(); bool hide = false; if ( !showComp && ci->isChecked() ) @@ -599,7 +603,7 @@ void TodoTable::loadFile( const QString &/*we use the standard*/ ) for(QValueList::ConstIterator it = vaList.begin(); it != vaList.end(); ++it ){ ToDoEvent *event = new ToDoEvent( (*it) ); list.append( event ); - } + } vaList.clear(); // qDebug("parsing done=%d", t.elapsed() ); if ( list.count() > 0 ) { @@ -681,7 +685,7 @@ void TodoTable::keyPressEvent( QKeyEvent *e ) emit signalEdit(); default: break; - } + } } else QTable::keyPressEvent( e ); } @@ -758,7 +762,7 @@ int TodoTable::showCategoryId() const id = mCat.id( "Todo List", showCat ); return id; } -void TodoTable::applyJournal() +void TodoTable::applyJournal() { // we need to hack QFile file( journalFileName() ); @@ -809,7 +813,7 @@ void TodoTable::slotCheckDay() if( mDay.daysTo(date )!= 0 ){ setPaintingEnabled( FALSE ); for(int i=0; i < numRows(); i++ ){ - ToDoEvent *t = todoList[static_cast(item(i, 0))]; + ToDoEvent *t = todoList[static_cast(item(i, 0))]; static_cast(item(i, 3) )->setToDoEvent( t ); } @@ -918,8 +922,8 @@ static ToDoEvent xmlToEvent( XMLElement *element ) // category dummy = element->attribute("Categories" ); QStringList ids = QStringList::split(";", dummy ); - event.setCategories( ids ); - + event.setCategories( ids ); + //uid dummy = element->attribute("Uid" ); dumInt = dummy.toInt(&ok ); diff --git a/core/pim/todo/todotable.h b/core/pim/todo/todotable.h index 7539df1..387dddb 100644 --- a/core/pim/todo/todotable.h +++ b/core/pim/todo/todotable.h @@ -192,9 +192,6 @@ private: inline void TodoTable::insertIntoTable( ToDoEvent *todo, int row ) { - int rows = numRows(); - ++rows; - setNumRows( rows ); QString sortKey = (char) ((todo->isCompleted() ? 'a' : 'A') + todo->priority() ) + Qtopia::buildSortKey( todo->description() ); -- cgit v0.9.0.2