forked from qt-creator/qt-creator
Debugger: fix UI text capitalization and punctuation
Change-Id: I5f2888750164a6b3cb5ba9bf0cafb457a31a1b6e Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -587,7 +587,7 @@ void CdbEngine::consoleStubProcessStarted()
|
|||||||
QString errorMessage;
|
QString errorMessage;
|
||||||
if (!launchCDB(attachParameters, &errorMessage)) {
|
if (!launchCDB(attachParameters, &errorMessage)) {
|
||||||
showMessage(errorMessage, LogError);
|
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")
|
STATE_DEBUG(state(), Q_FUNC_INFO, __LINE__, "notifyEngineSetupFailed")
|
||||||
notifyEngineSetupFailed();
|
notifyEngineSetupFailed();
|
||||||
}
|
}
|
||||||
@@ -624,7 +624,7 @@ void CdbEngine::setupEngine()
|
|||||||
qDebug("<setupEngine ok=%d", ok);
|
qDebug("<setupEngine ok=%d", ok);
|
||||||
if (!ok) {
|
if (!ok) {
|
||||||
showMessage(errorMessage, LogError);
|
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")
|
STATE_DEBUG(state(), Q_FUNC_INFO, __LINE__, "notifyEngineSetupFailed")
|
||||||
notifyEngineSetupFailed();
|
notifyEngineSetupFailed();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -376,7 +376,7 @@ LogWindow::LogWindow(QWidget *parent)
|
|||||||
QToolButton *repeatButton = new QToolButton(this);
|
QToolButton *repeatButton = new QToolButton(this);
|
||||||
repeatButton->setIcon(QIcon(QLatin1String(":/debugger/images/debugger_stepover_small.png")));
|
repeatButton->setIcon(QIcon(QLatin1String(":/debugger/images/debugger_stepover_small.png")));
|
||||||
repeatButton->setIconSize(QSize(12, 12));
|
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;
|
QHBoxLayout *commandBox = new QHBoxLayout;
|
||||||
commandBox->addWidget(repeatButton);
|
commandBox->addWidget(repeatButton);
|
||||||
|
|||||||
Reference in New Issue
Block a user