-rw-r--r-- | core/pim/todo/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/todo/mainwindow.cpp b/core/pim/todo/mainwindow.cpp index 27e76d9..974951e 100644 --- a/core/pim/todo/mainwindow.cpp +++ b/core/pim/todo/mainwindow.cpp | |||
@@ -323,65 +323,65 @@ void TodoWindow::slotDelete() | |||
323 | } | 323 | } |
324 | 324 | ||
325 | if ( table->currentRow() == -1 ) | 325 | if ( table->currentRow() == -1 ) |
326 | return; | 326 | return; |
327 | 327 | ||
328 | QString strName = table->text( table->currentRow(), 2 ).left( 30 ); | 328 | QString strName = table->text( table->currentRow(), 2 ).left( 30 ); |
329 | 329 | ||
330 | if ( !QPEMessageBox::confirmDelete( this, tr( "Todo" ), strName ) ) | 330 | if ( !QPEMessageBox::confirmDelete( this, tr( "Todo" ), strName ) ) |
331 | return; | 331 | return; |
332 | 332 | ||
333 | 333 | ||
334 | 334 | ||
335 | table->setPaintingEnabled( false ); | 335 | table->setPaintingEnabled( false ); |
336 | table->removeCurrentEntry(); | 336 | table->removeCurrentEntry(); |
337 | table->setPaintingEnabled( true ); | 337 | table->setPaintingEnabled( true ); |
338 | 338 | ||
339 | if ( table->numRows() == 0 ) { | 339 | if ( table->numRows() == 0 ) { |
340 | currentEntryChanged( -1, 0 ); | 340 | currentEntryChanged( -1, 0 ); |
341 | findAction->setEnabled( FALSE ); | 341 | findAction->setEnabled( FALSE ); |
342 | } | 342 | } |
343 | mStack->raiseWidget(1); | 343 | mStack->raiseWidget(1); |
344 | } | 344 | } |
345 | void TodoWindow::slotDeleteAll() | 345 | void TodoWindow::slotDeleteAll() |
346 | { | 346 | { |
347 | if(syncing) { | 347 | if(syncing) { |
348 | QMessageBox::warning(this, tr("Todo"), | 348 | QMessageBox::warning(this, tr("Todo"), |
349 | tr("Can not edit data, currently syncing")); | 349 | tr("Can not edit data, currently syncing")); |
350 | return; | 350 | return; |
351 | } | 351 | } |
352 | 352 | ||
353 | //QString strName = table->text( table->currentRow(), 2 ).left( 30 ); | 353 | //QString strName = table->text( table->currentRow(), 2 ).left( 30 ); |
354 | 354 | ||
355 | if ( !QPEMessageBox::confirmDelete( this, tr( "Todo" ), tr("Delete all tasks?") ) ) | 355 | if ( !QPEMessageBox::confirmDelete( this, tr( "Todo" ), tr("all tasks") ) ) |
356 | return; | 356 | return; |
357 | 357 | ||
358 | 358 | ||
359 | 359 | ||
360 | table->setPaintingEnabled( false ); | 360 | table->setPaintingEnabled( false ); |
361 | table->removeAllEntries(); | 361 | table->removeAllEntries(); |
362 | table->setPaintingEnabled( true ); | 362 | table->setPaintingEnabled( true ); |
363 | 363 | ||
364 | if ( table->numRows() == 0 ) { | 364 | if ( table->numRows() == 0 ) { |
365 | currentEntryChanged( -1, 0 ); | 365 | currentEntryChanged( -1, 0 ); |
366 | findAction->setEnabled( FALSE ); | 366 | findAction->setEnabled( FALSE ); |
367 | } | 367 | } |
368 | mStack->raiseWidget(1 ); | 368 | mStack->raiseWidget(1 ); |
369 | } | 369 | } |
370 | 370 | ||
371 | void TodoWindow::slotEdit() | 371 | void TodoWindow::slotEdit() |
372 | { | 372 | { |
373 | if(syncing) { | 373 | if(syncing) { |
374 | QMessageBox::warning(this, tr("Todo"), | 374 | QMessageBox::warning(this, tr("Todo"), |
375 | tr("Can not edit data, currently syncing")); | 375 | tr("Can not edit data, currently syncing")); |
376 | return; | 376 | return; |
377 | } | 377 | } |
378 | 378 | ||
379 | ToDoEvent todo = table->currentEntry(); | 379 | ToDoEvent todo = table->currentEntry(); |
380 | qWarning("slotEdit" ); | 380 | qWarning("slotEdit" ); |
381 | NewTaskDialog e( todo, this, 0, TRUE ); | 381 | NewTaskDialog e( todo, this, 0, TRUE ); |
382 | e.setCaption( tr( "Edit Task" ) ); | 382 | e.setCaption( tr( "Edit Task" ) ); |
383 | 383 | ||
384 | #if defined(Q_WS_QWS) || defined(_WS_QWS_) | 384 | #if defined(Q_WS_QWS) || defined(_WS_QWS_) |
385 | e.showMaximized(); | 385 | e.showMaximized(); |
386 | #endif | 386 | #endif |
387 | int ret = e.exec(); | 387 | int ret = e.exec(); |