Remove bad casts

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-12-13 20:32:41 +00:00
parent 7acd73744b
commit bc0aebab3e
2 changed files with 2 additions and 2 deletions

View File

@@ -2480,7 +2480,7 @@ bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
NMTVGETINFOTIP *info = (NMTVGETINFOTIP*)lParam;
// Which item are we trying to get a tooltip for?
event.m_item = (WXHTREEITEM) info->hItem;
event.m_item = info->hItem;
break;
}