From 3feb6351d3c9eb406fc5115d6d579a8897a4c545 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Mon, 7 Oct 2024 16:19:31 +0200 Subject: [PATCH] Debugger: Fix capitalization Amends aed3eee06ab09b31197aba2b6b5a0f977b76ecde Change-Id: I8b23d4ff2613b4ac0873acc7b960419bf1363814 Reviewed-by: Christian Stenger Reviewed-by: Leena Miettinen --- src/plugins/debugger/debuggerengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/debuggerengine.cpp b/src/plugins/debugger/debuggerengine.cpp index 00100592c5b..50ab3ba5d22 100644 --- a/src/plugins/debugger/debuggerengine.cpp +++ b/src/plugins/debugger/debuggerengine.cpp @@ -510,7 +510,7 @@ public: QAction m_abortAction{Tr::tr("Abort Debugging")}; QAction m_stepIntoAction{Tr::tr("Step Into")}; QAction m_stepOutAction{Tr::tr("Step Out")}; - QAction m_toggleEnableBreakpointsAction{Tr::tr("Disable all Breakpoints")}; + QAction m_toggleEnableBreakpointsAction{Tr::tr("Disable All Breakpoints")}; QAction m_runToLineAction{Tr::tr("Run to Line")}; // In the debug menu QAction m_runToSelectedFunctionAction{Tr::tr("Run to Selected Function")}; QAction m_jumpToLineAction{Tr::tr("Jump to Line")};