Debugger: Remove no longer needed DebuggerEngine::setNeedsFixup()

Change-Id: I30bc1d6184bd66a634d890999e31dff48d2f25b4
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2017-10-06 14:25:59 +02:00
parent cc7754920c
commit f1888a6331
3 changed files with 0 additions and 3 deletions

View File

@@ -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)

View File

@@ -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);

View File

@@ -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);