Added a new option to add memchecks from the Watch window.

Fixed watch labels from being truncated at the first whitespace.
This commit is contained in:
skidau
2014-10-26 16:14:17 +11:00
parent 2a3a8520a2
commit 73dca1ca33
2 changed files with 36 additions and 13 deletions

View File

@ -249,7 +249,8 @@ void Watches::AddFromStrings(const TWatchesStr& bpstrs)
std::stringstream ss;
ss << std::hex << bpstr;
ss >> bp.iAddress;
ss >> bp.name;
ss >> std::ws;
getline(ss, bp.name);
Add(bp);
}
}