From f9aa624d5b9776ebf869c9727a07428e3db61c9c Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Sun, 22 Oct 2023 06:58:49 +0200 Subject: [PATCH] useractions: Also adapt weird formatted for loop GIT_SILENT --- src/useractions.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/useractions.cpp b/src/useractions.cpp index b8bc735921..1386f3dd8f 100644 --- a/src/useractions.cpp +++ b/src/useractions.cpp @@ -1799,9 +1799,7 @@ void Window::setShortcut(const QString &_cut) if (match.hasMatch()) { const QString base = match.captured(1); const QString list = match.captured(2); - for (int i = 0; - i < list.length(); - ++i) { + for (int i = 0; i < list.length(); ++i) { QKeySequence c(base + list[i]); if (!c.isEmpty()) { keys.append(c);