Module: wine Branch: master Commit: 80103832c82205b5998692ea43359f249d5191c4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=80103832c82205b5998692ea43...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Mon Mar 5 19:02:22 2007 +0000
comctl32: Replace const pointer parameter with correct pointer to const.
---
dlls/comctl32/rebar.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/rebar.c b/dlls/comctl32/rebar.c index a1e0a41..3ea8fe9 100644 --- a/dlls/comctl32/rebar.c +++ b/dlls/comctl32/rebar.c @@ -1762,7 +1762,7 @@ REBAR_InternalEraseBkGnd (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam, REC }
static void -REBAR_InternalHitTest (REBAR_INFO *infoPtr, const LPPOINT lpPt, UINT *pFlags, INT *pBand) +REBAR_InternalHitTest (REBAR_INFO *infoPtr, const POINT *lpPt, UINT *pFlags, INT *pBand) { REBAR_BAND *lpBand; RECT rect;