aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2019-01-07 14:21:45 +0100
committerMichael Mann <mmann78@netscape.net>2019-01-08 01:58:02 +0000
commitd45f0faf67f5470655648f3ccfef88415d1d5f91 (patch)
tree19122d3bfbe43f6a79f7393dd6c8ffef70b5c922
parent32b320ba0f4518adf50e4b16e201e424ea5bd53f (diff)
Qt: Clarify Remove action from the welcome page
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 <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--ui/qt/welcome_page.cpp2
1 files changed, 1 insertions, 1 deletions
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()));