forked from qt-creator/qt-creator
Debugger: Fix UI text capitalization
Change-Id: Iccd08dae2ef2a86c0d0d5fb5d572b24664c40431 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -115,13 +115,11 @@ QWidget *CommonOptionsPage::widget()
|
||||
"will automatically open views associated with the current location.") + QLatin1Char('\n');
|
||||
auto checkBoxCloseSourceBuffersOnExit = new QCheckBox(behaviorBox);
|
||||
checkBoxCloseSourceBuffersOnExit->setText(tr("Close temporary source views on debugger exit"));
|
||||
checkBoxCloseSourceBuffersOnExit->setToolTip(t + tr("Select this option to close "
|
||||
"automatically opened source views when the debugger exits."));
|
||||
checkBoxCloseSourceBuffersOnExit->setToolTip(t + tr("Closes automatically opened source views when the debugger exits."));
|
||||
|
||||
auto checkBoxCloseMemoryBuffersOnExit = new QCheckBox(behaviorBox);
|
||||
checkBoxCloseMemoryBuffersOnExit->setText(tr("Close temporary memory views on debugger exit"));
|
||||
checkBoxCloseMemoryBuffersOnExit->setToolTip(t + tr("Select this option to close "
|
||||
"automatically opened memory views when the debugger exits."));
|
||||
checkBoxCloseMemoryBuffersOnExit->setToolTip(t + tr("Closes automatically opened memory views when the debugger exits."));
|
||||
|
||||
auto checkBoxSwitchModeOnExit = new QCheckBox(behaviorBox);
|
||||
checkBoxSwitchModeOnExit->setText(tr("Switch to previous mode on debugger exit"));
|
||||
|
||||
Reference in New Issue
Block a user