author | zecke <zecke> | 2002-09-12 13:24:35 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-09-12 13:24:35 (UTC) |
commit | ff3af248587695ad5119057edc5e138acf2664e2 (patch) (unidiff) | |
tree | d7b1bee54be6c2e4688458662e1980f820bd396e | |
parent | e2bc13b329b949f8d0f0d9c21903942d3929c4bb (diff) | |
download | opie-ff3af248587695ad5119057edc5e138acf2664e2.zip opie-ff3af248587695ad5119057edc5e138acf2664e2.tar.gz opie-ff3af248587695ad5119057edc5e138acf2664e2.tar.bz2 |
Ok I thought I removed that
ok now finally remove setRow code from todotable.h
This was committed accidently
-rw-r--r-- | core/pim/todo/todotable.cpp | 22 | ||||
-rw-r--r-- | core/pim/todo/todotable.h | 3 |
2 files changed, 13 insertions, 12 deletions
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 | |||
@@ -233,2 +233,3 @@ TodoTable::TodoTable( QWidget *parent, const char *name ) | |||
233 | { | 233 | { |
234 | setNumRows(0); | ||
234 | mCat.load( categoryFileName() ); | 235 | mCat.load( categoryFileName() ); |
@@ -248,3 +249,3 @@ TodoTable::TodoTable( QWidget *parent, const char *name ) | |||
248 | setColumnWidth( 3, 20 ); | 249 | setColumnWidth( 3, 20 ); |
249 | horizontalHeader()->setLabel( 3, tr( "Deadline" ) ); | 250 | horizontalHeader()->setLabel( 3, tr( "Deadline" ) ); |
250 | 251 | ||
@@ -315,3 +316,3 @@ void TodoTable::slotClicked( int row, int col, int, const QPoint &pos ) | |||
315 | break; | 316 | break; |
316 | case 3: | 317 | case 3: |
317 | // may as well edit it... | 318 | // may as well edit it... |
@@ -440,3 +441,3 @@ void TodoTable::updateVisible() | |||
440 | return; | 441 | return; |
441 | 442 | ||
442 | if (showDeadl){ | 443 | if (showDeadl){ |
@@ -454,2 +455,5 @@ void TodoTable::updateVisible() | |||
454 | ToDoEvent *t = todoList[ci]; | 455 | ToDoEvent *t = todoList[ci]; |
456 | if (!t) | ||
457 | continue; | ||
458 | |||
455 | QArray<int> vlCats = t->categories(); | 459 | QArray<int> vlCats = t->categories(); |
@@ -601,3 +605,3 @@ void TodoTable::loadFile( const QString &/*we use the standard*/ ) | |||
601 | list.append( event ); | 605 | list.append( event ); |
602 | } | 606 | } |
603 | vaList.clear(); | 607 | vaList.clear(); |
@@ -683,3 +687,3 @@ void TodoTable::keyPressEvent( QKeyEvent *e ) | |||
683 | break; | 687 | break; |
684 | } | 688 | } |
685 | } else | 689 | } else |
@@ -760,3 +764,3 @@ int TodoTable::showCategoryId() const | |||
760 | } | 764 | } |
761 | void TodoTable::applyJournal() | 765 | void TodoTable::applyJournal() |
762 | { | 766 | { |
@@ -811,3 +815,3 @@ void TodoTable::slotCheckDay() | |||
811 | for(int i=0; i < numRows(); i++ ){ | 815 | for(int i=0; i < numRows(); i++ ){ |
812 | ToDoEvent *t = todoList[static_cast<CheckItem*>(item(i, 0))]; | 816 | ToDoEvent *t = todoList[static_cast<CheckItem*>(item(i, 0))]; |
813 | static_cast<DueTextItem*>(item(i, 3) )->setToDoEvent( t ); | 817 | static_cast<DueTextItem*>(item(i, 3) )->setToDoEvent( t ); |
@@ -920,4 +924,4 @@ static ToDoEvent xmlToEvent( XMLElement *element ) | |||
920 | QStringList ids = QStringList::split(";", dummy ); | 924 | QStringList ids = QStringList::split(";", dummy ); |
921 | event.setCategories( ids ); | 925 | event.setCategories( ids ); |
922 | 926 | ||
923 | //uid | 927 | //uid |
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 | |||
@@ -194,5 +194,2 @@ inline void TodoTable::insertIntoTable( ToDoEvent *todo, int row ) | |||
194 | { | 194 | { |
195 | int rows = numRows(); | ||
196 | ++rows; | ||
197 | setNumRows( rows ); | ||
198 | QString sortKey = (char) ((todo->isCompleted() ? 'a' : 'A') | 195 | QString sortKey = (char) ((todo->isCompleted() ? 'a' : 'A') |