summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-gutenbrowser/openetext.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/noncore/apps/opie-gutenbrowser/openetext.cpp b/noncore/apps/opie-gutenbrowser/openetext.cpp
index a5d855d..75edacd 100644
--- a/noncore/apps/opie-gutenbrowser/openetext.cpp
+++ b/noncore/apps/opie-gutenbrowser/openetext.cpp
@@ -370,7 +370,8 @@ void OpenEtext::remove()
370 "?\nThis will not delete the file.</P>"; 370 "?\nThis will not delete the file.</P>";
371 switch( QMessageBox::information( this, tr("Remove Etext"), 371 unsigned short clickVal =
372 QMessageBox::information( this, tr("Remove Etext"),
372 tr(msg), 373 tr(msg),
373 tr("&Yes"), tr("&Cancel"), 0 ) ) 374 tr("&Yes"), tr("&Cancel"), 0 );
374 { 375 if ( clickVal == 0 ) {
375 case 0: // Yes clicked, 376 // The yes button was clicked
376 removeSelection(); 377 removeSelection();
@@ -378,5 +379,2 @@ void OpenEtext::remove()
378 getTitles(); 379 getTitles();
379 break;
380 case 1:
381 default:
382 } 380 }