From 4f6f448daffe309d66adfe2d90fe7f7a4f3a5aa6 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 22 Dec 2017 14:59:04 +0000 Subject: [PATCH] Correct the displayed message for Erase FoxQST.txt. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8359 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index a46f42d05..fc483f95d 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -5492,7 +5492,7 @@ void MainWindow::on_actionErase_ALL_TXT_triggered() //Erase ALL.TXT void MainWindow::on_actionErase_FoxQSO_txt_triggered() { int ret = MessageBox::query_message(this, tr("Confirm Erase"), - tr("Are you sure you want to erase file ALL.TXT?")); + tr("Are you sure you want to erase file FoxQSO.txt?")); if(ret==MessageBox::Yes) { QFile f{m_config.writeable_data_dir().absoluteFilePath("FoxQSO.txt")}; f.remove();