From d45f0faf67f5470655648f3ccfef88415d1d5f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Mon, 7 Jan 2019 14:21:45 +0100 Subject: [PATCH] Qt: Clarify Remove action from the welcome page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename the Remove action in the welcome page to "Remove from list" to indicate that the file is only removed from the list, not from disk. Change-Id: I4a47c9852203596cc601bf254a4bcfc700ccd025 Reviewed-on: https://code.wireshark.org/review/31433 Petri-Dish: Stig Bjørlykke Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann --- ui/qt/welcome_page.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/qt/welcome_page.cpp b/ui/qt/welcome_page.cpp index bddab4c85d..4826f82ef7 100644 --- a/ui/qt/welcome_page.cpp +++ b/ui/qt/welcome_page.cpp @@ -450,7 +450,7 @@ void WelcomePage::showRecentContextMenu(QPoint pos) recent_ctx_menu_->addSeparator(); - QAction *remove_action = recent_ctx_menu_->addAction(tr("Remove")); + QAction *remove_action = recent_ctx_menu_->addAction(tr("Remove from list")); remove_action->setData(cf_path); connect(remove_action, SIGNAL(triggered(bool)), this, SLOT(removeRecentPath()));