aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger
diff options
context:
space:
mode:
authorJarek Kobus <[email protected]>2012-08-28 13:18:50 +0200
committerOswald Buddenhagen <[email protected]>2012-08-28 14:16:10 +0200
commit4c96bd67916fbde48e5235c3f792fc21c606ebe8 (patch)
tree009add819dbe6f04767c5c8ad2c244121e5788b0 /src/plugins/debugger
parentc5b7726f524f413e8240e0e6c073745eaf2b1d48 (diff)
Fix source strings
Change-Id: Ib56082091a1f7e3062ff48e981bb4ee8e2dd9357 Reviewed-by: Oswald Buddenhagen <[email protected]>
Diffstat (limited to 'src/plugins/debugger')
-rw-r--r--src/plugins/debugger/gdb/gdboptionspage.cpp4
-rw-r--r--src/plugins/debugger/qml/qmlengine.cpp2
-rw-r--r--src/plugins/debugger/stackframe.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/debugger/gdb/gdboptionspage.cpp b/src/plugins/debugger/gdb/gdboptionspage.cpp
index 65ec57e08dd..5f3bc80efa4 100644
--- a/src/plugins/debugger/gdb/gdboptionspage.cpp
+++ b/src/plugins/debugger/gdb/gdboptionspage.cpp
@@ -145,7 +145,7 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent)
checkBoxUseDynamicType->setText(GdbOptionsPage::tr(
"Use dynamic object type for display"));
checkBoxUseDynamicType->setToolTip(GdbOptionsPage::tr(
- "Specifies whether the dynamic or the static type of objects will be"
+ "Specifies whether the dynamic or the static type of objects will be "
"displayed. Choosing the dynamic type might be slower."));
checkBoxLoadGdbInit = new QCheckBox(groupBoxGeneral);
@@ -190,7 +190,7 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent)
checkBoxBreakOnFatal->setText(GdbOptionsPage::tr("Stop when qFatal() is called"));
checkBoxBreakOnFatal->setToolTip(GdbOptionsPage::tr(
"<html><head/><body>Always add a breakpoint on the <i>qFatal()</i> function."
- "/body></html>"));
+ "</body></html>"));
checkBoxBreakOnAbort = new QCheckBox(groupBoxGeneral);
checkBoxBreakOnAbort->setText(GdbOptionsPage::tr("Stop when abort() is called"));
diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp
index 9fb7e8167d4..a1a9af9ea9e 100644
--- a/src/plugins/debugger/qml/qmlengine.cpp
+++ b/src/plugins/debugger/qml/qmlengine.cpp
@@ -741,7 +741,7 @@ void QmlEngine::executeNextI()
void QmlEngine::executeRunToLine(const ContextData &data)
{
QTC_ASSERT(state() == InferiorStopOk, qDebug() << state());
- showStatusMessage(tr("Run to line %1 (%2) requested...").arg(data.lineNumber).arg(data.fileName), 5000);
+ showStatusMessage(tr("Run to line %1 (%2) requested...").arg(data.lineNumber).arg(data.fileName), 5000);
resetLocation();
ContextData modifiedData = data;
quint32 line = data.lineNumber;
diff --git a/src/plugins/debugger/stackframe.cpp b/src/plugins/debugger/stackframe.cpp
index 2a9441bde0e..f1fa8d61b9d 100644
--- a/src/plugins/debugger/stackframe.cpp
+++ b/src/plugins/debugger/stackframe.cpp
@@ -116,7 +116,7 @@ QString StackFrame::toToolTip() const
} else {
str << tr("Binary debug information is accessible for this "
"frame. However, matching sources have not been found. "
- "Note that some distributions ship debug sources in "
+ "Note that some distributions ship debug sources "
"in separate packages.");
}