summaryrefslogtreecommitdiff
path: root/core/pim/todo/todotable.cpp
Unidiff
Diffstat (limited to 'core/pim/todo/todotable.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/todo/todotable.cpp17
1 files changed, 10 insertions, 7 deletions
diff --git a/core/pim/todo/todotable.cpp b/core/pim/todo/todotable.cpp
index 877308a..52a3087 100644
--- a/core/pim/todo/todotable.cpp
+++ b/core/pim/todo/todotable.cpp
@@ -306,9 +306,6 @@ void TodoTable::slotClicked( int row, int col, int, const QPoint &pos )
306 case 1: 306 case 1:
307 break; 307 break;
308 case 2: 308 case 2:
309 // may as well edit it...
310 // menuTimer->stop();
311 // emit signalEdit();
312 // Show detailed view of the selected entry 309 // Show detailed view of the selected entry
313 { 310 {
314 menuTimer->stop(); 311 menuTimer->stop();
@@ -319,7 +316,7 @@ void TodoTable::slotClicked( int row, int col, int, const QPoint &pos )
319 case 3: 316 case 3:
320 // may as well edit it... 317 // may as well edit it...
321 menuTimer->stop(); 318 menuTimer->stop();
322 // emit signalEdit(); 319 emit signalEdit();
323 break; 320 break;
324 } 321 }
325} 322}
@@ -670,15 +667,21 @@ void TodoTable::keyPressEvent( QKeyEvent *e )
670 } 667 }
671 case 1: 668 case 1:
672 break; 669 break;
673 case 2: 670 case 2:{
671 ToDoEvent *todo = todoList[static_cast<CheckItem*>(item(currentRow(), 0))];
672 emit showDetails(*todo);
673 break;
674 }
675 case 3:
676 // Future: Let us change the dueDate directly...
674 emit signalEdit(); 677 emit signalEdit();
675 default: 678 default:
676 break; 679 break;
677 } 680 }
678 } else { 681 } else
679 QTable::keyPressEvent( e ); 682 QTable::keyPressEvent( e );
680 } 683 }
681} 684
682 685
683QStringList TodoTable::categories() 686QStringList TodoTable::categories()
684{ 687{