MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / OnListViewDeleteItem

Method OnListViewDeleteItem

Libraries/TabbingFramework/TabbedMDISave.cpp:784–798  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

782}
783
784LRESULT CSaveModifiedItemsDialog::OnListViewDeleteItem(int /*idCtrl*/, LPNMHDR pnmh, BOOL& bHandled)
785{
786 bHandled = TRUE;
787 LPNMLISTVIEW pnmLV = (LPNMLISTVIEW)pnmh;
788 if(pnmLV != NULL)
789 {
790 LPARAM lParam = pnmLV->lParam;
791 if(lParam != NULL)
792 {
793 ((IUnknown*)lParam)->Release();
794 pnmLV->lParam = 0;
795 }
796 }
797 return 0;
798}
799
800LRESULT CSaveModifiedItemsDialog::OnListViewKeyDownToToggleCheck(int /*idCtrl*/, LPNMHDR pnmh, BOOL& bHandled)
801{

Callers

nothing calls this directly

Calls 1

ReleaseMethod · 0.80

Tested by

no test coverage detected