forked from qt-creator/qt-creator
Debugger: Remove 'Remote' qualification from 'Debug Server'
While using the Debug Server typically does involve a remotely running debug server (GDBServer or other stub) it's also possible and sometimes useful to use it locally. Change-Id: I7b041b14cc09d15ae3e6b501c9298f78764e256d Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
This commit is contained in:
@@ -273,7 +273,7 @@
|
||||
|
||||
\list 1
|
||||
|
||||
\li Select \uicontrol {Debug > Start Debugging > Attach to Remote
|
||||
\li Select \uicontrol {Debug > Start Debugging > Attach to Running
|
||||
Debug Server}.
|
||||
|
||||
\li In the \uicontrol {Host and port} field, enter the name of the remote
|
||||
|
@@ -2634,11 +2634,11 @@ void DebuggerPluginPrivate::extensionsInitialized()
|
||||
connect(act, &QAction::triggered, this, &DebuggerPluginPrivate::attachCore);
|
||||
|
||||
act = m_attachToRemoteServerAction = new QAction(this);
|
||||
act->setText(tr("Attach to Remote Debug Server..."));
|
||||
act->setText(tr("Attach to Running Debug Server..."));
|
||||
connect(act, &QAction::triggered, this, &DebuggerPluginPrivate::attachToRemoteServer);
|
||||
|
||||
act = m_startRemoteServerAction = new QAction(this);
|
||||
act->setText(tr("Start Remote Debug Server Attached to Process..."));
|
||||
act->setText(tr("Start Debug Server Attached to Process..."));
|
||||
connect(act, &QAction::triggered, this, &DebuggerPluginPrivate::startRemoteServerAndAttachToProcess);
|
||||
|
||||
act = m_attachToRunningApplication = new QAction(this);
|
||||
|
Reference in New Issue
Block a user