Allow breakpoints for files with spaces

Adds double quotes to source file paths to fix garbage data error.
This commit is contained in:
Luke Simmons
2022-08-30 16:16:16 -05:00
parent 045f907a89
commit e76f53be2c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -200,7 +200,7 @@ QString SeerPrintpointCreateDialog::printpointText () const {
}
if (filenameText() != "") {
printpointParameters += " --source " + filenameText();
printpointParameters += " --source \"" + filenameText() +"\"";
}
if (functionNameText() != "") {