Debugger: Fix breakpoint window on linux

This commit is contained in:
Ty Lamontagne 2021-11-08 20:39:44 -05:00 committed by lightningterror
parent f8061448d1
commit 4312bf711c
1 changed files with 3 additions and 3 deletions

View File

@ -149,12 +149,12 @@ void BreakpointWindow::setDefaultValues()
if (address != 0xFFFFFFFF)
{
swprintf(str,64,L"0x%08X",address);
editAddress->SetLabel(str);
editAddress->SetValue(str);
}
swprintf(str,64,L"0x%08X",size);
editSize->SetLabel(str);
editCondition->SetLabel(wxString(condition,wxConvUTF8));
editSize->SetValue(str);
editCondition->SetValue(wxString(condition,wxConvUTF8));
}
void BreakpointWindow::loadFromMemcheck(MemCheck& memcheck)