debugger: avoid unpleasant line break in warning

This commit is contained in:
hjk
2009-12-09 12:27:20 +01:00
parent 8c52f5720c
commit fd73952e9a
2 changed files with 3 additions and 3 deletions

View File

@@ -267,8 +267,8 @@ DebuggerSettings *DebuggerSettings::instance()
item = new SavedAction(instance);
item->setText(tr("Use precise breakpoints"));
item->setCheckable(true);
item->setDefaultValue(true);
item->setValue(true);
item->setDefaultValue(false);
item->setValue(false);
item->setSettingsKey(debugModeGroup, QLatin1String("UsePreciseBreakpoints"));
instance->insertItem(UsePreciseBreakpoints, item);

View File

@@ -247,7 +247,7 @@ bool DebuggerListener::coreAboutToClose()
break;
}
const QString question = cleanTermination ?
tr("A debugging session is still in progress. Would you like to terminate it?") :
tr("A debugging session is still in progress.\nWould you like to terminate it?") :
tr("A debugging session is still in progress. Terminating the session in the current"
" state (%1) can leave the target in an inconsistent state."
" Would you still like to terminate it?")