summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/breakhandler.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2017-04-05 14:08:44 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2017-04-05 12:26:03 +0000
commit71f2181ffbbd1983e6a303c84f4b7a4e2ba9bc87 (patch)
tree9fdd7d7d50a5c3c1736857b3c3b9784acba1d21d /src/plugins/debugger/breakhandler.cpp
parentad924399305475c07488648a37ed4d6d17d4fa5c (diff)
downloadqt-creator-71f2181ffbbd1983e6a303c84f4b7a4e2ba9bc87.tar.gz
Debugger: Fix UI text capitalization
Change-Id: Iccd08dae2ef2a86c0d0d5fb5d572b24664c40431 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/debugger/breakhandler.cpp')
-rw-r--r--src/plugins/debugger/breakhandler.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp
index 8c104e0dd8..eba7a8025c 100644
--- a/src/plugins/debugger/breakhandler.cpp
+++ b/src/plugins/debugger/breakhandler.cpp
@@ -363,19 +363,19 @@ BreakpointDialog::BreakpointDialog(Breakpoint b, QWidget *parent)
// Match BreakpointType (omitting unknown type).
const QStringList types = {
- tr("File name and line number"),
- tr("Function name"),
- tr("Break on memory address"),
- tr("Break when C++ exception is thrown"),
- tr("Break when C++ exception is caught"),
- tr("Break when function \"main\" starts"),
- tr("Break when a new process is forked"),
- tr("Break when a new process is executed"),
- tr("Break when a system call is executed"),
- tr("Break on data access at fixed address"),
- tr("Break on data access at address given by expression"),
- tr("Break on QML signal emit"),
- tr("Break when JavaScript exception is thrown")
+ tr("File Name and Line Number"),
+ tr("Function Name"),
+ tr("Break on Memory Address"),
+ tr("Break When C++ Exception Is Thrown"),
+ tr("Break When C++ Exception Is Caught"),
+ tr("Break When Function \"main\" Starts"),
+ tr("Break When a New Process Is Forked"),
+ tr("Break When a New Process Is Executed"),
+ tr("Break When a System Call Is Executed"),
+ tr("Break on Data Access at Fixed Address"),
+ tr("Break on Data Access at Address Given by Expression"),
+ tr("Break on QML Signal Emit"),
+ tr("Break When JavaScript Exception Is Thrown")
};
// We don't list UnknownBreakpointType, so 1 less:
QTC_CHECK(types.size() + 1 == LastBreakpointType);