diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-04-09 11:07:27 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-04-09 11:07:27 -0400 |
| commit | 2c2409fee437a2826050a7a67cfcbe690f8cae64 (patch) | |
| tree | c71302ee454d72d4f2790e1e050c5f13b5e335b0 /Source/Core/DolphinWX/Debugger/WatchView.cpp | |
| parent | 47bc61148511b2f95f44fc4d3eb645915d8a1d8c (diff) | |
| parent | 180854c617e1a7884e5996ab01ec751cf858aead (diff) | |
Merge pull request #2278 from lioncash/leak
Debugger: Fix memory leaks related to grid tables
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/WatchView.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/WatchView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/WatchView.cpp b/Source/Core/DolphinWX/Debugger/WatchView.cpp index d2349a94e3..9008ae7376 100644 --- a/Source/Core/DolphinWX/Debugger/WatchView.cpp +++ b/Source/Core/DolphinWX/Debugger/WatchView.cpp @@ -208,7 +208,7 @@ wxGridCellAttr* CWatchTable::GetAttr(int row, int col, wxGridCellAttr::wxAttrKin attr->SetBackgroundColour(*wxLIGHT_GREY); } } - attr->IncRef(); + return attr; } |
