I have a ListBoxRsc which contains a ListModel. I'm traversing down the list, getting what I need from each row and then
deleting the row:
rowP = mdlListModel_getRowAtIndex (listP, i);
mdlListRow_destroy (rowP);
mdlDialog_listBoxNRowsChangedRedraw (diP->rawItemP, TRUE);
My problem is, sometimes I get garbage displayed in the rows that have been deleted. Should I be calling a function other
than mdlDialog_listBoxNRowsChangedRedraw ( ) after deleting the row?