summarylogtreecommitdiffstats
path: root/0002-fix-qt-6.9-build.patch
blob: 0929a4d4e49c6de9348237853a378dcbbf683d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/RedPandaIDE/debugger/gdbmidebugger.cpp b/RedPandaIDE/debugger/gdbmidebugger.cpp
index fddcdbe7..f74ef271 100644
--- a/RedPandaIDE/debugger/gdbmidebugger.cpp
+++ b/RedPandaIDE/debugger/gdbmidebugger.cpp
@@ -1186,7 +1186,7 @@ void GDBMIDebuggerClient::evalExpression(const QString &expression)
     QString escaped;
     foreach(const QChar& ch, expression) {
         if (ch.unicode()<32) {
-            escaped+=QString("\\%1").arg(ch.unicode(),0,8);
+            escaped+=QString("\\%1").arg(int(ch.unicode()),0,8);
         } else
             escaped+=ch;
     }