ProjectExplorer: Tr::tr

Change-Id: I8f1b463c5cc7a53627f7a9ad261998b92f13e56a
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
hjk
2023-01-13 12:38:22 +01:00
parent e373fe6aa9
commit c5f7f5ab0a
149 changed files with 1672 additions and 15967 deletions

View File

@@ -3,6 +3,7 @@
#include "vcsannotatetaskhandler.h"
#include "projectexplorertr.h"
#include "task.h"
#include <coreplugin/iversioncontrol.h>
@@ -39,8 +40,8 @@ void VcsAnnotateTaskHandler::handle(const Task &task)
QAction *VcsAnnotateTaskHandler::createAction(QObject *parent) const
{
QAction *vcsannotateAction = new QAction(tr("&Annotate"), parent);
vcsannotateAction->setToolTip(tr("Annotate using version control system."));
QAction *vcsannotateAction = new QAction(Tr::tr("&Annotate"), parent);
vcsannotateAction->setToolTip(Tr::tr("Annotate using version control system."));
return vcsannotateAction;
}