From e62cbca0fbf7197ed099a3e58fa215e2ba9f7f46 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Thu, 26 Nov 1998 15:06:47 +0000 Subject: [PATCH] Removed some unnecessary FIXME outputs. --- if1632/thunk.c | 2 +- objects/dc.c | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/if1632/thunk.c b/if1632/thunk.c index cd04a0eb281..8d583b5ee1c 100644 --- a/if1632/thunk.c +++ b/if1632/thunk.c @@ -1454,6 +1454,6 @@ void WINAPI CBClientThunkSL( CONTEXT *context ) void WINAPI KERNEL_365( CONTEXT *context ) { LPWORD args = PTR_SEG_OFF_TO_LIN( SS_reg( context ), SP_reg( context ) ); - FIXME( thunk, "(%04X, %d): stub!\n", args[3], (INT16)args[2] ); + TRACE( thunk, "(%04X, %d): stub!\n", args[3], (INT16)args[2] ); } diff --git a/objects/dc.c b/objects/dc.c index 2ea4f56ad39..b38663b6715 100644 --- a/objects/dc.c +++ b/objects/dc.c @@ -1236,8 +1236,7 @@ HCOLORSPACE32 WINAPI GetColorSpace(HDC32 hdc) */ UINT16 WINAPI GetBoundsRect16(HDC16 hdc, LPRECT16 rect, UINT16 flags) { - FIXME(dc, "(): stub\n"); - return DCB_RESET; /* bounding rectangle always empty */ + return DCB_RESET | DCB_DISABLE; /* bounding rectangle always empty and disabled*/ } /*********************************************************************** @@ -1245,7 +1244,9 @@ UINT16 WINAPI GetBoundsRect16(HDC16 hdc, LPRECT16 rect, UINT16 flags) */ UINT16 WINAPI SetBoundsRect16(HDC16 hdc, const RECT16* rect, UINT16 flags) { - FIXME(dc, "(): stub\n"); - return DCB_DISABLE; /* bounding rectangle always empty */ + if ( (flags & DCB_ACCUMULATE) || (flags & DCB_ENABLE) ) + FIXME( dc, "(%04x, %p, %04x): stub\n", hdc, rect, flags ); + + return DCB_RESET | DCB_DISABLE; /* bounding rectangle always empty and disabled*/ }