forked from qt-creator/qt-creator
debugger: fix translation contexts
* add a few Q_OBJECT * change DebuggerRunControl::tr() to DebuggerPlugin::tr() Change-Id: I7ed973ea71b3492e91b45784595d9471587f72ea Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
@@ -218,8 +218,8 @@ public:
|
||||
|
||||
QAction *createAction(QObject *parent = 0)
|
||||
{
|
||||
QAction *action = new QAction(tr("Install &Debug Information"), parent);
|
||||
action->setToolTip(tr("This tries to install missing debug information."));
|
||||
QAction *action = new QAction(DebuggerPlugin::tr("Install &Debug Information"), parent);
|
||||
action->setToolTip(DebuggerPlugin::tr("This tries to install missing debug information."));
|
||||
return action;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user