| 530 | } |
| 531 | |
| 532 | LRESULT OnDestroy(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) |
| 533 | { |
| 534 | // Make sure to delete editor and item-data memory |
| 535 | // FIX: Thanks to Ilya Markevich for spotting this memory leak |
| 536 | DeleteAllItems(); |
| 537 | bHandled = TRUE; |
| 538 | return 0; |
| 539 | } |
| 540 | |
| 541 | LRESULT OnSettingChange(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) |
| 542 | { |
nothing calls this directly
no test coverage detected