diff --git a/samples/listctrl/listtest.cpp b/samples/listctrl/listtest.cpp index b440b9eaf7..7198ec34ca 100644 --- a/samples/listctrl/listtest.cpp +++ b/samples/listctrl/listtest.cpp @@ -686,6 +686,11 @@ void MyListCtrl::OnColRightClick(wxListEvent& event) SetColumnImage(col, -1); } + // Show popupmenu at position + wxMenu menu(wxT("Test")); + menu.Append(LIST_ABOUT, _T("&About")); + PopupMenu(&menu, event.GetPoint()); + wxLogMessage( wxT("OnColumnRightClick at %d."), event.GetColumn() ); } diff --git a/src/msw/listctrl.cpp b/src/msw/listctrl.cpp index 9f16e8d09d..cf1841b197 100644 --- a/src/msw/listctrl.cpp +++ b/src/msw/listctrl.cpp @@ -1743,7 +1743,7 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) wxLogLastError(_T("GetCursorPos")); } - if ( !::ScreenToClient(hwndHdr, &ptClick) ) + if ( !::ScreenToClient(GetHwnd(), &ptClick) ) { wxLogLastError(_T("ScreenToClient(listctrl header)")); }