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>
This commit is contained in:
Stig Bjørlykke 2019-01-07 14:21:45 +01:00 committed by Michael Mann
parent 32b320ba0f
commit d45f0faf67
1 changed files with 1 additions and 1 deletions

View File

@ -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()));