Test: Debugger: Gui: Compile fix for Qt6

Change-Id: I9c3c4b49e458c16115fead38255cfe197308916b
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Robert Loehning
2020-12-01 13:05:05 +01:00
parent b9886a4b04
commit 9a33333849

View File

@@ -269,7 +269,7 @@ void MainWindow::on_actionDumperBP_triggered()
QStringList sl; QStringList sl;
QString s = "hallo"; QString s = "hallo";
for (int c = 'a'; c < 'c'; c++) { for (int c = 'a'; c < 'c'; c++) {
s += c + 23; s += char(c + 23);
stdS += c; stdS += c;
sl.push_back(s); sl.push_back(s);
stdStringList.push_back(std::string(1, c)); stdStringList.push_back(std::string(1, c));