forked from qt-creator/qt-creator
ProjectExplorer: Tr::tr
Change-Id: I8f1b463c5cc7a53627f7a9ad261998b92f13e56a Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user