GUI: fixed a bug with comments incorrectly displayed in the BreakpointsView (thanks to ahmadmansoor for reporting)
This commit is contained in:
parent
f5d72e3dc7
commit
1972b3384b
|
@ -106,6 +106,8 @@ void BreakpointsView::reloadData()
|
|||
else
|
||||
mHardBPTable->setCellContent(wI, 4, comment);
|
||||
}
|
||||
else
|
||||
mHardBPTable->setCellContent(wI, 4, "");
|
||||
}
|
||||
mHardBPTable->reloadData();
|
||||
if(wBPList.count)
|
||||
|
@ -143,6 +145,8 @@ void BreakpointsView::reloadData()
|
|||
else
|
||||
mSoftBPTable->setCellContent(wI, 4, comment);
|
||||
}
|
||||
else
|
||||
mSoftBPTable->setCellContent(wI, 4, "");
|
||||
}
|
||||
mSoftBPTable->reloadData();
|
||||
if(wBPList.count)
|
||||
|
@ -180,6 +184,8 @@ void BreakpointsView::reloadData()
|
|||
else
|
||||
mMemBPTable->setCellContent(wI, 4, comment);
|
||||
}
|
||||
else
|
||||
mMemBPTable->setCellContent(wI, 4, "");
|
||||
}
|
||||
mMemBPTable->reloadData();
|
||||
if(wBPList.count)
|
||||
|
|
Loading…
Reference in New Issue