diff options
author | hjk <qthjk@ovi.com> | 2012-11-06 15:21:42 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-11-09 11:44:38 +0100 |
commit | 33468e35497ce043f7650fdcc9f1dbb01efe7a69 (patch) | |
tree | c987b459ecc66f7e1a855e79fa83db530c7ee202 /src/plugins/debugger/debuggeractions.cpp | |
parent | 6841976aa81cbbf21af7a4c15dd3823d39d5016b (diff) | |
download | qt-creator-33468e35497ce043f7650fdcc9f1dbb01efe7a69.tar.gz |
Debugger: add a new bool setting to follow all branches after fork
Currently unused.
Change-Id: Ic751de17bf43749a135b353c0b916371174b35f8
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger/debuggeractions.cpp')
-rw-r--r-- | src/plugins/debugger/debuggeractions.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index cf608a6fef..494d24fe15 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -439,6 +439,12 @@ DebuggerSettings::DebuggerSettings(QSettings *settings) insertItem(AttemptQuickStart, item); item = new SavedAction(this); + item->setSettingsKey(debugModeGroup, QLatin1String("MultiInferior")); + item->setCheckable(true); + item->setDefaultValue(false); + insertItem(MultiInferior, item); + + item = new SavedAction(this); item->setSettingsKey(debugModeGroup, QLatin1String("UseToolTips")); item->setText(tr("Use tooltips in main editor when debugging")); item->setToolTip(tr("Checking this will enable tooltips for variable " |