comctl32: Don't FIXME on handled cases.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
20b33b8009
commit
11c557b66c
|
@ -10756,11 +10756,12 @@ static inline LRESULT LISTVIEW_WMPaint(LISTVIEW_INFO *infoPtr, HDC hdc)
|
|||
*/
|
||||
static LRESULT LISTVIEW_PrintClient(LISTVIEW_INFO *infoPtr, HDC hdc, DWORD options)
|
||||
{
|
||||
FIXME("Partial Stub: (hdc=%p options=0x%08x)\n", hdc, options);
|
||||
|
||||
if ((options & PRF_CHECKVISIBLE) && !IsWindowVisible(infoPtr->hwndSelf))
|
||||
return 0;
|
||||
|
||||
if (options & ~(PRF_ERASEBKGND|PRF_CLIENT))
|
||||
FIXME("(hdc=%p options=0x%08x) partial stub\n", hdc, options);
|
||||
|
||||
if (options & PRF_ERASEBKGND)
|
||||
LISTVIEW_EraseBkgnd(infoPtr, hdc);
|
||||
|
||||
|
|
Loading…
Reference in New Issue