diff options
Diffstat (limited to 'src/plugins/debugger/gdb/gdbengine.cpp')
-rw-r--r-- | src/plugins/debugger/gdb/gdbengine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 8f41a77dd9..338ea71c33 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -4701,7 +4701,7 @@ void GdbEngine::loadInitScript() void GdbEngine::loadPythonDumpers() { const QByteArray dumperSourcePath = - Core::ICore::instance()->resourcePath().toLocal8Bit() + "/dumper/"; + Core::ICore::resourcePath().toLocal8Bit() + "/dumper/"; postCommand("python execfile('" + dumperSourcePath + "bridge.py')", ConsoleCommand|NonCriticalResponse); @@ -4791,9 +4791,9 @@ void GdbEngine::handleAdapterStartFailed(const QString &msg, if (!msg.isEmpty()) { const QString title = tr("Adapter start failed"); if (settingsIdHint.isEmpty()) { - Core::ICore::instance()->showWarningWithOptions(title, msg); + Core::ICore::showWarningWithOptions(title, msg); } else { - Core::ICore::instance()->showWarningWithOptions(title, msg, QString(), + Core::ICore::showWarningWithOptions(title, msg, QString(), _(Debugger::Constants::DEBUGGER_SETTINGS_CATEGORY), settingsIdHint); } } |