Skip to content

Commit

Permalink
[IDA] debuggee's stderr spaces displaying fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
a1ext committed Jul 18, 2018
1 parent b4cdba6 commit f36f1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labeless_ida/labeless_ida.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ QString supplyStdErrWithNavigationLinks(const LogItem& logItem)
foreach (QString line, items)
{
const bool matches = reTracebackFilePosition.exactMatch(line);
line = line.replace("\r", "").replace("&", "&amp;").replace("<", "&lt;").replace(">", "&gt;").replace("\\s", "&nbsp;"); // kludge
line = line.replace("\r", "").replace("&", "&amp;").replace("<", "&lt;").replace(">", "&gt;").replace(QRegExp("\\s"), "&nbsp;"); // kludge
if (!matches)
{
rvList << line;
Expand Down

0 comments on commit f36f1a0

Please sign in to comment.