1
0
Fork 0

GUI: fixed creation of dll breakpoints with a space

This commit is contained in:
mrexodia 2017-08-08 01:16:12 +02:00
parent 192b35acde
commit afd18d870f
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 1 deletions

View File

@ -966,7 +966,7 @@ void BreakpointsView::addDLLBPActionSlot()
QString fileName;
if(SimpleInputBox(this, tr("Enter the module name"), "", fileName, tr("Example: mydll.dll"), &DIcon("breakpoint.png")) && !fileName.isEmpty())
{
DbgCmdExec((QString("bpdll ") + fileName).toUtf8().constData());
DbgCmdExec(QString("bpdll \"%1\"").arg(fileName).toUtf8().constData());
}
}