Skip to content

Commit

Permalink
Fix string watches in debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Dman95 committed Feb 6, 2023
1 parent 99239a1 commit c73f7f3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -435,10 +435,7 @@ void Debugger::processAction(QString output, QString error)
else {
output = output.right(output.length() - index);
output = output.right(output.length() - output.indexOf(QChar('=')) - 1);
for (int i = output.size() - 1; i >= 0; i--) {
if (output[i].isSpace())
output.remove(i, 1);
}
output = output.trimmed();
}
}
memoryInfo info;
Expand Down

0 comments on commit c73f7f3

Please sign in to comment.