forked from qt-creator/qt-creator
Fix lupdate issues
Change-Id: I1971f74a54e4afe2d106c105f6b38f415bef488f Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
@@ -871,11 +871,11 @@ void Perspective::registerNextPrevShortcuts(QAction *next, QAction *prev)
|
||||
static const char nextId[] = "Analyzer.nextitem";
|
||||
static const char prevId[] = "Analyzer.previtem";
|
||||
|
||||
next->setText(tr("Next Item"));
|
||||
next->setText(DebuggerMainWindow::tr("Next Item"));
|
||||
Command * const nextCmd = ActionManager::registerAction(next, nextId,
|
||||
Context(Id::fromString(id())));
|
||||
nextCmd->augmentActionWithShortcutToolTip(next);
|
||||
prev->setText(tr("Previous Item"));
|
||||
prev->setText(DebuggerMainWindow::tr("Previous Item"));
|
||||
Command * const prevCmd = ActionManager::registerAction(prev, prevId,
|
||||
Context(Id::fromString(id())));
|
||||
prevCmd->augmentActionWithShortcutToolTip(prev);
|
||||
|
||||
@@ -32,6 +32,8 @@ namespace Internal {
|
||||
|
||||
class CMakeCommandBuilder : public CommandBuilder
|
||||
{
|
||||
Q_DECLARE_TR_FUNCTIONS(IncrediBuild::Internal::CMakeCommandBuilder)
|
||||
|
||||
public:
|
||||
CMakeCommandBuilder(ProjectExplorer::BuildStep *buildStep) : CommandBuilder(buildStep) {}
|
||||
|
||||
|
||||
@@ -37,6 +37,8 @@ namespace Internal {
|
||||
|
||||
class CommandBuilderAspect final : public Utils::BaseAspect
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit CommandBuilderAspect(ProjectExplorer::BuildStep *step);
|
||||
~CommandBuilderAspect() final;
|
||||
|
||||
@@ -32,6 +32,8 @@ namespace Internal {
|
||||
|
||||
class MakeCommandBuilder final : public CommandBuilder
|
||||
{
|
||||
Q_DECLARE_TR_FUNCTIONS(IncrediBuild::Internal::MakeCommandBuilder)
|
||||
|
||||
public:
|
||||
MakeCommandBuilder(ProjectExplorer::BuildStep *buildStep) : CommandBuilder(buildStep) {}
|
||||
|
||||
|
||||
@@ -84,6 +84,7 @@ class NimParser : public OutputTaskParser
|
||||
|
||||
class NimbleBuildStep : public AbstractProcessStep
|
||||
{
|
||||
Q_DECLARE_TR_FUNCTIONS(Nim::NimbleBuilStep)
|
||||
public:
|
||||
NimbleBuildStep(BuildStepList *parentList, Id id);
|
||||
|
||||
|
||||
@@ -31,6 +31,8 @@ namespace QmlDesigner {
|
||||
|
||||
class QMLDESIGNERCORE_EXPORT CapturingConnectionManager : public InteractiveConnectionManager
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
void setUp(NodeInstanceServerInterface *nodeInstanceServer,
|
||||
const QString &qrcMappingString,
|
||||
|
||||
@@ -31,6 +31,8 @@ namespace QmlDesigner {
|
||||
|
||||
class InteractiveConnectionManager : public ConnectionManager
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
InteractiveConnectionManager();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user