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 nextId[] = "Analyzer.nextitem";
|
||||||
static const char prevId[] = "Analyzer.previtem";
|
static const char prevId[] = "Analyzer.previtem";
|
||||||
|
|
||||||
next->setText(tr("Next Item"));
|
next->setText(DebuggerMainWindow::tr("Next Item"));
|
||||||
Command * const nextCmd = ActionManager::registerAction(next, nextId,
|
Command * const nextCmd = ActionManager::registerAction(next, nextId,
|
||||||
Context(Id::fromString(id())));
|
Context(Id::fromString(id())));
|
||||||
nextCmd->augmentActionWithShortcutToolTip(next);
|
nextCmd->augmentActionWithShortcutToolTip(next);
|
||||||
prev->setText(tr("Previous Item"));
|
prev->setText(DebuggerMainWindow::tr("Previous Item"));
|
||||||
Command * const prevCmd = ActionManager::registerAction(prev, prevId,
|
Command * const prevCmd = ActionManager::registerAction(prev, prevId,
|
||||||
Context(Id::fromString(id())));
|
Context(Id::fromString(id())));
|
||||||
prevCmd->augmentActionWithShortcutToolTip(prev);
|
prevCmd->augmentActionWithShortcutToolTip(prev);
|
||||||
|
|||||||
@@ -32,6 +32,8 @@ namespace Internal {
|
|||||||
|
|
||||||
class CMakeCommandBuilder : public CommandBuilder
|
class CMakeCommandBuilder : public CommandBuilder
|
||||||
{
|
{
|
||||||
|
Q_DECLARE_TR_FUNCTIONS(IncrediBuild::Internal::CMakeCommandBuilder)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CMakeCommandBuilder(ProjectExplorer::BuildStep *buildStep) : CommandBuilder(buildStep) {}
|
CMakeCommandBuilder(ProjectExplorer::BuildStep *buildStep) : CommandBuilder(buildStep) {}
|
||||||
|
|
||||||
|
|||||||
@@ -37,6 +37,8 @@ namespace Internal {
|
|||||||
|
|
||||||
class CommandBuilderAspect final : public Utils::BaseAspect
|
class CommandBuilderAspect final : public Utils::BaseAspect
|
||||||
{
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit CommandBuilderAspect(ProjectExplorer::BuildStep *step);
|
explicit CommandBuilderAspect(ProjectExplorer::BuildStep *step);
|
||||||
~CommandBuilderAspect() final;
|
~CommandBuilderAspect() final;
|
||||||
|
|||||||
@@ -32,6 +32,8 @@ namespace Internal {
|
|||||||
|
|
||||||
class MakeCommandBuilder final : public CommandBuilder
|
class MakeCommandBuilder final : public CommandBuilder
|
||||||
{
|
{
|
||||||
|
Q_DECLARE_TR_FUNCTIONS(IncrediBuild::Internal::MakeCommandBuilder)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
MakeCommandBuilder(ProjectExplorer::BuildStep *buildStep) : CommandBuilder(buildStep) {}
|
MakeCommandBuilder(ProjectExplorer::BuildStep *buildStep) : CommandBuilder(buildStep) {}
|
||||||
|
|
||||||
|
|||||||
@@ -84,6 +84,7 @@ class NimParser : public OutputTaskParser
|
|||||||
|
|
||||||
class NimbleBuildStep : public AbstractProcessStep
|
class NimbleBuildStep : public AbstractProcessStep
|
||||||
{
|
{
|
||||||
|
Q_DECLARE_TR_FUNCTIONS(Nim::NimbleBuilStep)
|
||||||
public:
|
public:
|
||||||
NimbleBuildStep(BuildStepList *parentList, Id id);
|
NimbleBuildStep(BuildStepList *parentList, Id id);
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ namespace QmlDesigner {
|
|||||||
|
|
||||||
class QMLDESIGNERCORE_EXPORT CapturingConnectionManager : public InteractiveConnectionManager
|
class QMLDESIGNERCORE_EXPORT CapturingConnectionManager : public InteractiveConnectionManager
|
||||||
{
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void setUp(NodeInstanceServerInterface *nodeInstanceServer,
|
void setUp(NodeInstanceServerInterface *nodeInstanceServer,
|
||||||
const QString &qrcMappingString,
|
const QString &qrcMappingString,
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ namespace QmlDesigner {
|
|||||||
|
|
||||||
class InteractiveConnectionManager : public ConnectionManager
|
class InteractiveConnectionManager : public ConnectionManager
|
||||||
{
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
InteractiveConnectionManager();
|
InteractiveConnectionManager();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user