Debugger: add a new bool setting to follow all branches after fork

Currently unused.

Change-Id: Ic751de17bf43749a135b353c0b916371174b35f8
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-11-06 15:21:42 +01:00
parent 6841976aa8
commit 33468e3549
4 changed files with 22 additions and 0 deletions

View File

@@ -438,6 +438,12 @@ DebuggerSettings::DebuggerSettings(QSettings *settings)
item->setDefaultValue(false);
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"));