diff options
author | hjk <qtc-committer@nokia.com> | 2011-11-01 17:56:32 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2011-11-01 18:17:50 +0100 |
commit | ffd0571549aab135de42ccd0bd084544d556a55e (patch) | |
tree | f39109a8e7a62b98f8181736735ec066286d8aad /src/plugins/debugger/debuggeractions.cpp | |
parent | 477476303ec174c46b5a80da1dd7f37363222397 (diff) | |
download | qt-creator-ffd0571549aab135de42ccd0bd084544d556a55e.tar.gz |
debugger: make "gdb startup script" directly editable
External files are still accessible using "source ..."
Change-Id: Icbf27302ef55b9061b69a9274cb7088798adf73d
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger/debuggeractions.cpp')
-rw-r--r-- | src/plugins/debugger/debuggeractions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index adaaf58c6e..f06412c299 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -365,9 +365,9 @@ DebuggerSettings::DebuggerSettings(QSettings *settings) insertItem(TargetAsync, item); item = new SavedAction(this); - item->setSettingsKey(debugModeGroup, QLatin1String("ScriptFile")); + item->setSettingsKey(debugModeGroup, QLatin1String("GdbStartupCommands")); item->setDefaultValue(QString()); - insertItem(GdbScriptFile, item); + insertItem(GdbStartupCommands, item); item = new SavedAction(this); item->setSettingsKey(debugModeGroup, QLatin1String("CloseBuffersOnExit")); |