From f6f783ac90a52038ecee83af36d99101de033c29 Mon Sep 17 00:00:00 2001 From: "Friedrich W. H. Kossebau" Date: Mon, 26 Aug 2019 02:10:03 +0200 Subject: [PATCH] micommand.cpp: Consistently use += like the context code GIT_SILENT --- plugins/debuggercommon/mi/micommand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/debuggercommon/mi/micommand.cpp b/plugins/debuggercommon/mi/micommand.cpp index fd2201ed23..2d7744fabd 100644 --- a/plugins/debuggercommon/mi/micommand.cpp +++ b/plugins/debuggercommon/mi/micommand.cpp @@ -70,9 +70,9 @@ QString MICommand::initialString() const result += miCommand(); if (m_thread != -1) - result = result + QStringLiteral(" --thread %1").arg(m_thread); + result += QStringLiteral(" --thread %1").arg(m_thread); if (m_frame != -1) - result = result + QStringLiteral(" --frame %1").arg(m_frame); + result += QStringLiteral(" --frame %1").arg(m_frame); if (!command_.isEmpty()) result += QLatin1Char(' ') + command_; -- GitLab