Fix for Qt ram watch window save file symbol type parameter sometimes being undefined.
This commit is contained in:
parent
6a2e384469
commit
d4c2a7e2d9
|
@ -911,7 +911,7 @@ void RamWatchDialog_t::openWatchEditWindow( ramWatch_t *rw, int mode)
|
|||
if ( (rw == NULL) || mode )
|
||||
{
|
||||
ramWatchList.add_entry( notesEntry->text().toStdString().c_str(),
|
||||
addr, unsignedTypeBtn->isChecked(), size, isSep);
|
||||
addr, unsignedTypeBtn->isChecked() ? 'u' : 's', size, isSep);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue