forked from qt-creator/qt-creator
Debugger: Remove no longer needed DebuggerEngine::setNeedsFixup()
Change-Id: I30bc1d6184bd66a634d890999e31dff48d2f25b4 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -435,7 +435,6 @@ void StartApplicationDialog::run(bool attachRemote)
|
|||||||
debugger->setDebugInfoLocation(newParameters.debugInfoLocation);
|
debugger->setDebugInfoLocation(newParameters.debugInfoLocation);
|
||||||
debugger->setInferior(inferior);
|
debugger->setInferior(inferior);
|
||||||
debugger->setServerStartScript(newParameters.serverStartScript); // Note: This requires inferior.
|
debugger->setServerStartScript(newParameters.serverStartScript); // Note: This requires inferior.
|
||||||
debugger->setNeedFixup(false);
|
|
||||||
|
|
||||||
bool isLocal = !dev || (dev->type() == ProjectExplorer::Constants::DESKTOP_DEVICE_TYPE);
|
bool isLocal = !dev || (dev->type() == ProjectExplorer::Constants::DESKTOP_DEVICE_TYPE);
|
||||||
if (!attachRemote)
|
if (!attachRemote)
|
||||||
|
|||||||
@@ -125,7 +125,6 @@ public:
|
|||||||
void setIosPlatform(const QString &platform);
|
void setIosPlatform(const QString &platform);
|
||||||
void setDeviceSymbolsRoot(const QString &deviceSymbolsRoot);
|
void setDeviceSymbolsRoot(const QString &deviceSymbolsRoot);
|
||||||
|
|
||||||
void setNeedFixup(bool) {} // FIXME: Remove after use in QtAppMan is gone.
|
|
||||||
void setTestCase(int testCase);
|
void setTestCase(int testCase);
|
||||||
void setOverrideStartScript(const QString &script);
|
void setOverrideStartScript(const QString &script);
|
||||||
|
|
||||||
|
|||||||
@@ -291,7 +291,6 @@ void QnxAttachDebugSupport::showProcessesDialog()
|
|||||||
auto debugger = new QnxAttachDebugSupport(runControl);
|
auto debugger = new QnxAttachDebugSupport(runControl);
|
||||||
debugger->setStartMode(AttachToRemoteServer);
|
debugger->setStartMode(AttachToRemoteServer);
|
||||||
debugger->setCloseMode(DetachAtClose);
|
debugger->setCloseMode(DetachAtClose);
|
||||||
debugger->setNeedFixup(false);
|
|
||||||
debugger->setSymbolFile(localExecutable);
|
debugger->setSymbolFile(localExecutable);
|
||||||
debugger->setUseCtrlCStub(true);
|
debugger->setUseCtrlCStub(true);
|
||||||
debugger->setAttachPid(pid);
|
debugger->setAttachPid(pid);
|
||||||
|
|||||||
Reference in New Issue
Block a user