From 9a33333849d5901746a0721d0f4faa46c6bbedba Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Tue, 1 Dec 2020 13:05:05 +0100 Subject: [PATCH] Test: Debugger: Gui: Compile fix for Qt6 Change-Id: I9c3c4b49e458c16115fead38255cfe197308916b Reviewed-by: hjk --- tests/manual/debugger/gui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/manual/debugger/gui/mainwindow.cpp b/tests/manual/debugger/gui/mainwindow.cpp index 723a0b67c98..f16a891b5f8 100644 --- a/tests/manual/debugger/gui/mainwindow.cpp +++ b/tests/manual/debugger/gui/mainwindow.cpp @@ -269,7 +269,7 @@ void MainWindow::on_actionDumperBP_triggered() QStringList sl; QString s = "hallo"; for (int c = 'a'; c < 'c'; c++) { - s += c + 23; + s += char(c + 23); stdS += c; sl.push_back(s); stdStringList.push_back(std::string(1, c));