forked from qt-creator/qt-creator
debugger: change default value for 'break on qFatal' to 'false'
Change-Id: Ief1879c1e8009d1a60575180d4132d8f03a88b08 Reviewed-on: http://codereview.qt.nokia.com/2690 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
@@ -332,8 +332,8 @@ DebuggerSettings::DebuggerSettings(QSettings *settings)
|
||||
item = new SavedAction(this);
|
||||
item->setText(tr("Break on \"qFatal\""));
|
||||
item->setCheckable(true);
|
||||
item->setDefaultValue(true);
|
||||
item->setValue(true);
|
||||
item->setDefaultValue(false);
|
||||
item->setValue(false);
|
||||
item->setSettingsKey(debugModeGroup, QLatin1String("BreakOnFatal"));
|
||||
insertItem(BreakOnFatal, item);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user