From a48315ee1f5372cacc749a2cf985f55d1e312dbd Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Wed, 9 Oct 2013 16:38:34 +0200 Subject: [PATCH] Debugger: fix UI text capitalization and punctuation Change-Id: I5f2888750164a6b3cb5ba9bf0cafb457a31a1b6e Reviewed-by: hjk --- src/plugins/debugger/cdb/cdbengine.cpp | 4 ++-- src/plugins/debugger/logwindow.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index 4a74ae0f8f2..9da67241358 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -587,7 +587,7 @@ void CdbEngine::consoleStubProcessStarted() QString errorMessage; if (!launchCDB(attachParameters, &errorMessage)) { showMessage(errorMessage, LogError); - showMessageBox(QMessageBox::Critical, tr("Failed To Start The Debugger"), errorMessage); + showMessageBox(QMessageBox::Critical, tr("Failed to Start the Debugger"), errorMessage); STATE_DEBUG(state(), Q_FUNC_INFO, __LINE__, "notifyEngineSetupFailed") notifyEngineSetupFailed(); } @@ -624,7 +624,7 @@ void CdbEngine::setupEngine() qDebug("setIcon(QIcon(QLatin1String(":/debugger/images/debugger_stepover_small.png"))); repeatButton->setIconSize(QSize(12, 12)); - repeatButton->setToolTip(tr("Repeat last command for debug reasons")); + repeatButton->setToolTip(tr("Repeat last command for debug reasons.")); QHBoxLayout *commandBox = new QHBoxLayout; commandBox->addWidget(repeatButton);