forked from qt-creator/qt-creator
Mention possible locations of the debugging helper in the error dialog
Requires a lot of trivial forwarding.
This commit is contained in:
@@ -1004,6 +1004,11 @@ void DebuggerManager::setQtDumperLibraryName(const QString &dl)
|
||||
m_dumperLib = dl;
|
||||
}
|
||||
|
||||
void DebuggerManager::setQtDumperLibraryLocations(const QStringList &dl)
|
||||
{
|
||||
m_dumperLibLocations = dl;
|
||||
}
|
||||
|
||||
qint64 DebuggerManager::inferiorPid() const
|
||||
{
|
||||
return m_inferiorPid;
|
||||
@@ -1518,6 +1523,15 @@ QString DebuggerManager::qtDumperLibraryName() const
|
||||
return m_dumperLib;
|
||||
}
|
||||
|
||||
QStringList DebuggerManager::qtDumperLibraryLocations() const
|
||||
{
|
||||
if (theDebuggerAction(UseCustomDebuggingHelperLocation)->value().toBool())
|
||||
return QStringList() <<
|
||||
( theDebuggerAction(CustomDebuggingHelperLocation)->value().toString()
|
||||
+ tr(" (explicitly set in the Debugger Options)"));
|
||||
return m_dumperLibLocations;
|
||||
}
|
||||
|
||||
void DebuggerManager::showQtDumperLibraryWarning(const QString &details)
|
||||
{
|
||||
QMessageBox dialog(mainWindow());
|
||||
|
||||
Reference in New Issue
Block a user