WinCE compilation fix (no SM_C[XY]DRAG under CE as there is no mouse cursor)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34706 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-06-19 22:37:44 +00:00
parent 702c413357
commit 68fc69f307

View File

@ -2397,7 +2397,7 @@ WXLRESULT wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lPara
#endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
case WM_MOUSEMOVE:
#ifndef __WXWINCE__
if ( m_htClickedItem )
{
int cx = abs(m_ptClick.x - x);
@ -2433,9 +2433,8 @@ WXLRESULT wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lPara
}
m_htClickedItem.Unset();
}
}
#endif // __WXWINCE__
if ( m_dragImage )
{