From: Christian Costa Date: Mon, 21 Mar 2005 10:28:49 +0000 (+0000) Subject: Removed wrong FIXMEs. X-Git-Tag: wine-20050419~393 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=967f11dd8d36dad5ad3a71852e56cfe32b86b003;p=wine%2Feterwine.git Removed wrong FIXMEs. --- diff --git a/dlls/ddraw/dclipper/main.c b/dlls/ddraw/dclipper/main.c index a0f69d7933..0236119833 100644 --- a/dlls/ddraw/dclipper/main.c +++ b/dlls/ddraw/dclipper/main.c @@ -88,7 +88,7 @@ HRESULT WINAPI Main_DirectDrawClipper_SetHwnd( ) { IDirectDrawClipperImpl *This = (IDirectDrawClipperImpl *)iface; - TRACE("(%p)->SetHwnd(0x%08lx,0x%08lx)\n",This,dwFlags,(DWORD)hWnd); + TRACE("(%p)->(0x%08lx,0x%08lx)\n", This, dwFlags, (DWORD)hWnd); if( dwFlags ) { FIXME("dwFlags = 0x%08lx, not supported.\n",dwFlags); return DDERR_INVALIDPARAMS; @@ -149,7 +149,7 @@ HRESULT WINAPI Main_DirectDrawClipper_GetClipList( { IDirectDrawClipperImpl *This = (IDirectDrawClipperImpl *)iface; - TRACE("(%p,%p,%p,%p)\n", This, lpRect, lpClipList, lpdwSize); + TRACE("(%p,%p,%p,%p)\n", This, lpRect, lpClipList, lpdwSize); if (This->hWnd) { @@ -236,7 +236,7 @@ HRESULT WINAPI Main_DirectDrawClipper_GetHWnd( LPDIRECTDRAWCLIPPER iface, HWND* hWndPtr ) { IDirectDrawClipperImpl *This = (IDirectDrawClipperImpl *)iface; - FIXME("(%p)->(%p),stub!\n",This,hWndPtr); + TRACE("(%p)->(%p)\n", This, hWndPtr); *hWndPtr = This->hWnd; @@ -248,7 +248,7 @@ HRESULT WINAPI Main_DirectDrawClipper_Initialize( ) { IDirectDrawImpl* pOwner; IDirectDrawClipperImpl *This = (IDirectDrawClipperImpl *)iface; - FIXME("(%p)->(%p,0x%08lx),stub!\n",This,lpDD,dwFlags); + TRACE("(%p)->(%p,0x%08lx)\n", This, lpDD, dwFlags); if (This->ddraw_owner != NULL) return DDERR_ALREADYINITIALIZED;