forked from qt-creator/qt-creator
Debugger: Make setFixupNeeded() accessible to user code
Change-Id: I470b91e5ad80f2086f49c48d00975dd66444aa30 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -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);
|
||||
|
@@ -114,6 +114,8 @@ public:
|
||||
void setIosPlatform(const QString &platform);
|
||||
void setDeviceSymbolsRoot(const QString &deviceSymbolsRoot);
|
||||
|
||||
void setNeedFixup(bool on);
|
||||
|
||||
signals:
|
||||
void aboutToNotifyInferiorSetupOk();
|
||||
|
||||
|
Reference in New Issue
Block a user