Debugger: Make setFixupNeeded() accessible to user code

Change-Id: I470b91e5ad80f2086f49c48d00975dd66444aa30
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2017-09-05 13:17:43 +02:00
parent 903308e908
commit 706fb1a2b6
2 changed files with 7 additions and 0 deletions

View File

@@ -265,6 +265,11 @@ void DebuggerRunTool::setDeviceSymbolsRoot(const QString &deviceSymbolsRoot)
m_runParameters.deviceSymbolsRoot = deviceSymbolsRoot;
}
void DebuggerRunTool::setNeedFixup(bool on)
{
m_runParameters.needFixup = on;
}
void DebuggerRunTool::setInferior(const Runnable &runnable)
{
QTC_ASSERT(runnable.is<StandardRunnable>(), reportFailure(); return);

View File

@@ -114,6 +114,8 @@ public:
void setIosPlatform(const QString &platform);
void setDeviceSymbolsRoot(const QString &deviceSymbolsRoot);
void setNeedFixup(bool on);
signals:
void aboutToNotifyInferiorSetupOk();