- fix: Failed to evaluate expressions while debugging, if the expression has spaces in it.
This commit is contained in:
parent
80ec88e552
commit
2cc00cb924
|
@ -1168,7 +1168,7 @@ void GDBMIDebuggerClient::evalExpression(const QString &expression)
|
|||
{
|
||||
QString escaped;
|
||||
foreach(const QChar& ch, expression) {
|
||||
if (ch.unicode()<=32) {
|
||||
if (ch.unicode()<32) {
|
||||
escaped+=QString("\\%1").arg(ch.unicode(),0,8);
|
||||
} else
|
||||
escaped+=ch;
|
||||
|
|
Loading…
Reference in New Issue