From dddb6a121dcfa4281a9a1cd4f122e72d7b5ea46a Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Mon, 11 May 2009 02:10:26 +0000 Subject: [PATCH] (trunk qt) #2059: "Move source file to Trash" doesn't work --- qt/options.cc | 2 +- qt/prefs-dialog.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qt/options.cc b/qt/options.cc index aeb4f4c62..8ac0d6062 100644 --- a/qt/options.cc +++ b/qt/options.cc @@ -110,7 +110,7 @@ Options :: Options( Session& session, const Prefs& prefs, const QString& filenam c->setChecked( prefs.getBool( Prefs :: START ) ); layout->addWidget( c, ++row, 0, 1, 2, Qt::AlignLeft ); - c = myTrashCheck = new QCheckBox( tr( "&Move source file to Trash" ) ); + c = myTrashCheck = new QCheckBox( tr( "&Delete source file" ) ); c->setChecked( prefs.getBool( Prefs :: TRASH_ORIGINAL ) ); layout->addWidget( c, ++row, 0, 1, 2, Qt::AlignLeft ); diff --git a/qt/prefs-dialog.cc b/qt/prefs-dialog.cc index 255da3e38..5fac7a651 100644 --- a/qt/prefs-dialog.cc +++ b/qt/prefs-dialog.cc @@ -539,7 +539,7 @@ PrefsDialog :: createTorrentsTab( ) hig->addWideControl( checkBoxNew( tr( "Display &options dialog" ), Prefs::OPTIONS_PROMPT ) ); hig->addWideControl( checkBoxNew( tr( "&Start when added" ), Prefs::START ) ); - hig->addWideControl( checkBoxNew( tr( "Mo&ve source files to Trash" ), Prefs::TRASH_ORIGINAL ) ); + hig->addWideControl( checkBoxNew( tr( "&Delete source files" ), Prefs::TRASH_ORIGINAL ) ); b = myDestinationButton = new QPushButton; b->setIcon( folderPixmap );