diff options
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index f568d9346c1..e42818bf014 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -846,7 +846,7 @@ public slots: void aboutToUnloadSession(); void aboutToSaveSession(); - void executeDebuggerCommand(const QString &command); + void executeDebuggerCommand(const QString &command, DebuggerLanguages languages); bool evaluateScriptExpression(const QString &expression); void coreShutdown(); @@ -2526,10 +2526,10 @@ void DebuggerPluginPrivate::aboutToSaveSession() m_breakHandler->saveSessionData(); } -void DebuggerPluginPrivate::executeDebuggerCommand(const QString &command) +void DebuggerPluginPrivate::executeDebuggerCommand(const QString &command, DebuggerLanguages languages) { if (currentEngine()->acceptsDebuggerCommands()) - currentEngine()->executeDebuggerCommand(command); + currentEngine()->executeDebuggerCommand(command, languages); else showStatusMessage(tr("User commands are not accepted in the current state.")); } |