Debugger: Fix memory leaks related to grid tables

Incrementing the reference count here isn't necessary, as they construct with a count of 1. Incrementing again results in the attributes not being freed.
This commit is contained in:
Lioncash
2015-04-07 23:16:26 -04:00
parent 717b326214
commit 180854c617
3 changed files with 1 additions and 3 deletions

View File

@ -208,7 +208,7 @@ wxGridCellAttr* CWatchTable::GetAttr(int row, int col, wxGridCellAttr::wxAttrKin
attr->SetBackgroundColour(*wxLIGHT_GREY);
}
}
attr->IncRef();
return attr;
}