wine
13 years agooleaut32: FONTDESC size field value is not important for OleCreateFontIndirect.
Nikolay Sivov [Sun, 21 Aug 2011 13:53:12 +0000 (17:53 +0400)] 
oleaut32: FONTDESC size field value is not important for OleCreateFontIndirect.

13 years agooleaut32/tests: Clean result value checks.
Nikolay Sivov [Sun, 21 Aug 2011 13:45:49 +0000 (17:45 +0400)] 
oleaut32/tests: Clean result value checks.

13 years agooleaut32: Get rid of duplicated condition check.
Nikolay Sivov [Sun, 21 Aug 2011 09:40:32 +0000 (13:40 +0400)] 
oleaut32: Get rid of duplicated condition check.

13 years agooleaut32: Clean QueryInterface() method, turn impl. calls to interface calls.
Nikolay Sivov [Sun, 21 Aug 2011 08:27:53 +0000 (12:27 +0400)] 
oleaut32: Clean QueryInterface() method, turn impl. calls to interface calls.

13 years agooleaut32: Remove some useless comments and initializers.
Nikolay Sivov [Sun, 21 Aug 2011 08:16:28 +0000 (12:16 +0400)] 
oleaut32: Remove some useless comments and initializers.

13 years agogdi32: Change the object-level brush function to accept a stand-alone dib and a separ...
Huw Davies [Fri, 19 Aug 2011 15:26:20 +0000 (16:26 +0100)] 
gdi32: Change the object-level brush function to accept a stand-alone dib and a separate clip region.

13 years agogdi32: Implement Polyline and PolyPolyline in the dib driver.
Huw Davies [Fri, 19 Aug 2011 15:26:19 +0000 (16:26 +0100)] 
gdi32: Implement Polyline and PolyPolyline in the dib driver.

13 years agogdi32: Move to using a multi-line pen object-level function.
Huw Davies [Fri, 19 Aug 2011 15:26:18 +0000 (16:26 +0100)] 
gdi32: Move to using a multi-line pen object-level function.

13 years agogdi32: Use the gdi_image_bits structure to maintain the dib driver's bits.
Huw Davies [Fri, 19 Aug 2011 15:26:17 +0000 (16:26 +0100)] 
gdi32: Use the gdi_image_bits structure to maintain the dib driver's bits.

13 years agogdi32: Simplify dibdrv_PutImage a little.
Huw Davies [Fri, 19 Aug 2011 15:26:16 +0000 (16:26 +0100)] 
gdi32: Simplify dibdrv_PutImage a little.

13 years agogdi32: Avoid directly accessing the bits ptr where possible.
Huw Davies [Fri, 19 Aug 2011 15:26:15 +0000 (16:26 +0100)] 
gdi32: Avoid directly accessing the bits ptr where possible.

13 years agogdi32: Use the dib driver GetImage and PutImage implementations in GetBitmapBits...
Huw Davies [Fri, 19 Aug 2011 15:26:14 +0000 (16:26 +0100)] 
gdi32: Use the dib driver GetImage and PutImage implementations in GetBitmapBits and SetBitmapBits when appropriate.

13 years agogdi32: Add a helper to retrieve the bitmap functions.
Huw Davies [Fri, 19 Aug 2011 15:26:13 +0000 (16:26 +0100)] 
gdi32: Add a helper to retrieve the bitmap functions.

13 years agogdi32: Allow SetBitmapBits to set incomplete scanlines.
Huw Davies [Fri, 19 Aug 2011 15:26:12 +0000 (16:26 +0100)] 
gdi32: Allow SetBitmapBits to set incomplete scanlines.

13 years agogdi32: Avoid a possible unnecessary conversion if PutImage is called with zero biClrUsed.
Huw Davies [Fri, 19 Aug 2011 15:26:11 +0000 (16:26 +0100)] 
gdi32: Avoid a possible unnecessary conversion if PutImage is called with zero biClrUsed.

13 years agogdi32: Fix colour table comparison.
Huw Davies [Fri, 19 Aug 2011 15:26:10 +0000 (16:26 +0100)] 
gdi32: Fix colour table comparison.

13 years agowined3d: Move FBO based color blits from IWineD3DSurfaceImpl_BltOverride() to wined3d...
Henri Verbeet [Sun, 21 Aug 2011 19:35:00 +0000 (21:35 +0200)] 
wined3d: Move FBO based color blits from IWineD3DSurfaceImpl_BltOverride() to wined3d_surface_blt().

13 years agowined3d: Move surface_color_fill() based color fills from IWineD3DSurfaceImpl_BltOver...
Henri Verbeet [Sun, 21 Aug 2011 19:34:59 +0000 (21:34 +0200)] 
wined3d: Move surface_color_fill() based color fills from IWineD3DSurfaceImpl_BltOverride() to wined3d_surface_blt().

13 years agowined3d: Reject color fills on sysmem surfaces in ffp_blit_supported().
Henri Verbeet [Sun, 21 Aug 2011 19:34:58 +0000 (21:34 +0200)] 
wined3d: Reject color fills on sysmem surfaces in ffp_blit_supported().

13 years agowined3d: Directly call surface_cpu_blt() in cpu_blit_color_fill().
Henri Verbeet [Sun, 21 Aug 2011 19:34:57 +0000 (21:34 +0200)] 
wined3d: Directly call surface_cpu_blt() in cpu_blit_color_fill().

And avoid a potential infinite recursion if wined3d_surface_blt() ends up
calling cpu_blit_color_fill().

13 years agowined3d: Allow color fills on FBO attachable surfaces in ffp_blit_supported().
Henri Verbeet [Sun, 21 Aug 2011 19:34:56 +0000 (21:34 +0200)] 
wined3d: Allow color fills on FBO attachable surfaces in ffp_blit_supported().

13 years agowined3d: Don't allow blits with an invalid destination rectangle when a clipper is...
Henri Verbeet [Sun, 21 Aug 2011 19:34:55 +0000 (21:34 +0200)] 
wined3d: Don't allow blits with an invalid destination rectangle when a clipper is set either.

Clippers don't really work. Previously we mostly didn't run into this because
the rectangle was already rejected by ddraw_surface7_Blt(), although
ddraw_surface7_BltFast() might have been affected in a couple of cases. We
should of course implement clippers, but until that happens, completely
rejecting the blit is better than introducing memory corruption.

This fixes a regression introduced by commit
92e616f355ded5f3634625dba245e9b437e3ad6a.

13 years agowined3d: Draw buffers are per-framebuffer state.
Henri Verbeet [Sun, 21 Aug 2011 19:34:54 +0000 (21:34 +0200)] 
wined3d: Draw buffers are per-framebuffer state.

13 years agowined3d: Merge FindContext() into context_acquire().
Henri Verbeet [Sun, 21 Aug 2011 19:34:53 +0000 (21:34 +0200)] 
wined3d: Merge FindContext() into context_acquire().

This actually fixes a bug. A context's current_rt field may get set to NULL if
that surface gets destroyed or unloaded. In general, the next time that
context is acquired, context_setup_target() will then set everything up again.
However, if a context_acquire() call with a NULL target ends up returning such
a context, context_setup_target() never sets the current_rt field because the
target FindContext() chooses never gets propagated to context_acquire(). This
patch ensures context_setup_target() is never called with a NULL target.

13 years agowined3d: Reuse convert_a8r8g8b8_x8r8g8b8() for B8G8R8X8 -> B8G8R8A8 conversions.
Henri Verbeet [Sun, 21 Aug 2011 19:34:52 +0000 (21:34 +0200)] 
wined3d: Reuse convert_a8r8g8b8_x8r8g8b8() for B8G8R8X8 -> B8G8R8A8 conversions.

13 years agowined3d: Add compressed surface support to surface_cpu_blt().
Henri Verbeet [Sun, 21 Aug 2011 19:34:51 +0000 (21:34 +0200)] 
wined3d: Add compressed surface support to surface_cpu_blt().

13 years agontdll: Stub TokenSessionId for query call.
Nikolay Sivov [Mon, 8 Aug 2011 21:27:22 +0000 (01:27 +0400)] 
ntdll: Stub TokenSessionId for query call.

13 years agoadvapi32/tests: Fix invalid read in test.
Nikolay Sivov [Sat, 6 Aug 2011 09:33:38 +0000 (13:33 +0400)] 
advapi32/tests: Fix invalid read in test.

13 years agocomctl32/treeview: Set edit box text before notification and keep it after.
Nikolay Sivov [Sat, 6 Aug 2011 08:55:33 +0000 (12:55 +0400)] 
comctl32/treeview: Set edit box text before notification and keep it after.

13 years agowinex11: Simplify rectangle operations.
Huw Davies [Fri, 19 Aug 2011 15:23:57 +0000 (16:23 +0100)] 
winex11: Simplify rectangle operations.

13 years agowinex11: Sync a dib section's bits before copying the brush.
Huw Davies [Fri, 19 Aug 2011 15:23:56 +0000 (16:23 +0100)] 
winex11: Sync a dib section's bits before copying the brush.

13 years agowineps: Don't write a PostScript trailer if we haven't written a header.
Huw Davies [Fri, 19 Aug 2011 15:22:10 +0000 (16:22 +0100)] 
wineps: Don't write a PostScript trailer if we haven't written a header.

13 years agomscoree: COM cleanup for the ICLRRuntimeInfo iface.
Michael Stefaniuc [Thu, 18 Aug 2011 22:43:17 +0000 (00:43 +0200)] 
mscoree: COM cleanup for the ICLRRuntimeInfo iface.

13 years agoamstream: Use CoTaskMemRealloc instead of alloc+copy.
Michael Stefaniuc [Tue, 16 Aug 2011 08:32:27 +0000 (10:32 +0200)] 
amstream: Use CoTaskMemRealloc instead of alloc+copy.

13 years agoamstream: Get rid of the explicit implementation of IMediaStream.
Michael Stefaniuc [Tue, 16 Aug 2011 08:24:15 +0000 (10:24 +0200)] 
amstream: Get rid of the explicit implementation of IMediaStream.

13 years agoamstream: Avoid the forward declaration of the DirectDrawMediaStream_Vtbl.
Michael Stefaniuc [Tue, 16 Aug 2011 08:13:31 +0000 (10:13 +0200)] 
amstream: Avoid the forward declaration of the DirectDrawMediaStream_Vtbl.

13 years agoamstream: Basic COM cleanup for the IDirectDrawMediaStream iface.
Michael Stefaniuc [Tue, 16 Aug 2011 08:11:54 +0000 (10:11 +0200)] 
amstream: Basic COM cleanup for the IDirectDrawMediaStream iface.

13 years agowineoss.drv: Fix AudioRenderClient write pointer calculation.
Jörg Höhle [Tue, 9 Aug 2011 21:34:11 +0000 (23:34 +0200)] 
wineoss.drv: Fix AudioRenderClient write pointer calculation.

13 years agowinealsa.drv: Fix AudioRenderClient write pointer calculation.
Jörg Höhle [Tue, 9 Aug 2011 21:27:51 +0000 (23:27 +0200)] 
winealsa.drv: Fix AudioRenderClient write pointer calculation.

13 years agoamstream: Avoid a forward declaration of the IMediaStreamFilter vtbl.
Michael Stefaniuc [Wed, 10 Aug 2011 22:14:30 +0000 (00:14 +0200)] 
amstream: Avoid a forward declaration of the IMediaStreamFilter vtbl.

13 years agoamstream: COM cleanup for the IMediaStreamFilter iface.
Michael Stefaniuc [Wed, 10 Aug 2011 22:13:17 +0000 (00:13 +0200)] 
amstream: COM cleanup for the IMediaStreamFilter iface.

13 years agogameux: COM cleanup in gamestatistics.c.
Michael Stefaniuc [Wed, 10 Aug 2011 22:11:07 +0000 (00:11 +0200)] 
gameux: COM cleanup in gamestatistics.c.

13 years agogameux: COM cleanup in gameexplorer.c.
Michael Stefaniuc [Wed, 10 Aug 2011 22:06:47 +0000 (00:06 +0200)] 
gameux: COM cleanup in gameexplorer.c.

13 years agodxdiagn: COM cleanup for the IDxDiagContainer iface.
Michael Stefaniuc [Wed, 10 Aug 2011 21:59:30 +0000 (23:59 +0200)] 
dxdiagn: COM cleanup for the IDxDiagContainer iface.

13 years agodxdiagn: COM cleanup for the IDxDiagProvider iface.
Michael Stefaniuc [Wed, 10 Aug 2011 21:58:23 +0000 (23:58 +0200)] 
dxdiagn: COM cleanup for the IDxDiagProvider iface.

13 years agoqcap: COM cleanup in capturegraph.c.
Michael Stefaniuc [Wed, 10 Aug 2011 21:57:01 +0000 (23:57 +0200)] 
qcap: COM cleanup in capturegraph.c.

13 years agogdi32/tests: Consistently print out all infos about non-equal rects.
André Hentschel [Tue, 9 Aug 2011 17:17:12 +0000 (19:17 +0200)] 
gdi32/tests: Consistently print out all infos about non-equal rects.

13 years agowinex11: Fix function header for building without xrender headers.
André Hentschel [Tue, 9 Aug 2011 17:16:58 +0000 (19:16 +0200)] 
winex11: Fix function header for building without xrender headers.

13 years agokernel32/tests: WaitForMultipleObjects returns lowest signaled handle first.
Jörg Höhle [Sat, 23 Jul 2011 20:02:19 +0000 (22:02 +0200)] 
kernel32/tests: WaitForMultipleObjects returns lowest signaled handle first.

13 years agows2_32/tests: Add MSG_PEEK tests on recv().
Bruno Jesus [Mon, 8 Aug 2011 00:33:09 +0000 (21:33 -0300)] 
ws2_32/tests: Add MSG_PEEK tests on recv().

13 years agoshell32: Remove redundant function declaration.
Andrew Talbot [Sun, 7 Aug 2011 20:11:35 +0000 (21:11 +0100)] 
shell32: Remove redundant function declaration.

13 years agocomctl32: Remove redundant function declaration.
Andrew Talbot [Sun, 7 Aug 2011 20:11:32 +0000 (21:11 +0100)] 
comctl32: Remove redundant function declaration.

13 years agontdll: Accept double-digit CPU families.
André Hentschel [Sun, 7 Aug 2011 11:45:48 +0000 (13:45 +0200)] 
ntdll: Accept double-digit CPU families.

13 years agoopenal32: void functions should not return a value.
Andrew Talbot [Sat, 6 Aug 2011 11:51:19 +0000 (12:51 +0100)] 
openal32: void functions should not return a value.

13 years agoole2.dll16: void functions should not return a value.
Andrew Talbot [Sat, 6 Aug 2011 11:51:17 +0000 (12:51 +0100)] 
ole2.dll16: void functions should not return a value.

13 years agomsvcrt: void functions should not return a value.
Andrew Talbot [Sat, 6 Aug 2011 11:51:16 +0000 (12:51 +0100)] 
msvcrt: void functions should not return a value.

13 years agomsvcp90: void functions should not return a value.
Andrew Talbot [Sat, 6 Aug 2011 11:51:14 +0000 (12:51 +0100)] 
msvcp90: void functions should not return a value.

13 years agocompobj.dll16: void functions should not return a value.
Andrew Talbot [Sat, 6 Aug 2011 11:51:13 +0000 (12:51 +0100)] 
compobj.dll16: void functions should not return a value.

13 years agocomctl32: void functions should not return a value.
Andrew Talbot [Sat, 6 Aug 2011 11:51:11 +0000 (12:51 +0100)] 
comctl32: void functions should not return a value.

13 years agocabinet: void functions should not return a value.
Andrew Talbot [Sat, 6 Aug 2011 11:51:09 +0000 (12:51 +0100)] 
cabinet: void functions should not return a value.

13 years agowineoss.drv: Print strerror of errno, not of -1 (Coverity).
Marcus Meissner [Sat, 6 Aug 2011 11:26:18 +0000 (13:26 +0200)] 
wineoss.drv: Print strerror of errno, not of -1 (Coverity).

13 years agod3dx9_36: Fixed memset of a -2 32bit value (Coverity).
Marcus Meissner [Sat, 6 Aug 2011 11:13:28 +0000 (13:13 +0200)] 
d3dx9_36: Fixed memset of a -2 32bit value (Coverity).

13 years agonet: LoadStringW incorrect size bytes vs characters.
Marcus Meissner [Sat, 6 Aug 2011 11:09:17 +0000 (13:09 +0200)] 
net: LoadStringW incorrect size bytes vs characters.

13 years agojscript: Don't copy more than needed in parse_identifier.
Jacek Caban [Fri, 5 Aug 2011 15:23:25 +0000 (17:23 +0200)] 
jscript: Don't copy more than needed in parse_identifier.

13 years agoRelease 1.3.26. wine-1.3.26
Alexandre Julliard [Fri, 5 Aug 2011 17:24:22 +0000 (19:24 +0200)] 
Release 1.3.26.

13 years agowined3d: Add support for Nvidia GTX 550/560 Ti.
William Pettersson [Thu, 4 Aug 2011 22:29:35 +0000 (08:29 +1000)] 
wined3d: Add support for Nvidia GTX 550/560 Ti.

13 years agowscript: Fix tests on wow64.
Michał Ziętek [Fri, 5 Aug 2011 14:26:43 +0000 (16:26 +0200)] 
wscript: Fix tests on wow64.

13 years agocmd: Fix handling of lines starting with echo. or echo:.
Frédéric Delanoy [Fri, 5 Aug 2011 14:29:21 +0000 (16:29 +0200)] 
cmd: Fix handling of lines starting with echo. or echo:.

13 years agowinealsa.drv: Inject handle_underrun=1 setting for pulse-backed devices.
Andrew Eikum [Fri, 5 Aug 2011 14:33:10 +0000 (09:33 -0500)] 
winealsa.drv: Inject handle_underrun=1 setting for pulse-backed devices.

13 years agowinealsa.drv: Tell ALSA to play silence during underruns.
Andrew Eikum [Fri, 5 Aug 2011 14:33:00 +0000 (09:33 -0500)] 
winealsa.drv: Tell ALSA to play silence during underruns.

13 years agonet: Add a WriteConsole() fall back so things still works on Windows if the output...
Francois Gouget [Wed, 3 Aug 2011 17:44:16 +0000 (19:44 +0200)] 
net: Add a WriteConsole() fall back so things still works on Windows if the output is redirected.

13 years agonet: Convert to Unicode.
Francois Gouget [Fri, 5 Aug 2011 10:19:06 +0000 (12:19 +0200)] 
net: Convert to Unicode.

13 years agowinhttp: Don't depend on shlwapi for decoding a URL.
Hans Leidekker [Fri, 5 Aug 2011 13:00:19 +0000 (15:00 +0200)] 
winhttp: Don't depend on shlwapi for decoding a URL.

13 years agogdi32: Simplify dibdrv_GetImage by merging the stand-alone and selected bitmap cases.
Huw Davies [Fri, 5 Aug 2011 12:20:32 +0000 (13:20 +0100)] 
gdi32: Simplify dibdrv_GetImage by merging the stand-alone and selected bitmap cases.

13 years agogdi32: Fix dibdrv_PutImage for the selected bitmap case.
Huw Davies [Fri, 5 Aug 2011 12:20:31 +0000 (13:20 +0100)] 
gdi32: Fix dibdrv_PutImage for the selected bitmap case.

13 years agodpnet: COM cleanup for the IDirectPlay8LobbiedApplication iface.
Michael Stefaniuc [Fri, 5 Aug 2011 11:14:21 +0000 (13:14 +0200)] 
dpnet: COM cleanup for the IDirectPlay8LobbiedApplication iface.

13 years agodpnet: COM cleanup for the IDirectPlay8ThreadPool iface.
Michael Stefaniuc [Fri, 5 Aug 2011 11:12:43 +0000 (13:12 +0200)] 
dpnet: COM cleanup for the IDirectPlay8ThreadPool iface.

13 years agowinmm: Remove redundant code.
Jörg Höhle [Wed, 27 Jul 2011 21:44:09 +0000 (23:44 +0200)] 
winmm: Remove redundant code.

13 years agowinmm: Restore checking of callback flags.
Jörg Höhle [Wed, 27 Jul 2011 21:44:09 +0000 (23:44 +0200)] 
winmm: Restore checking of callback flags.

13 years agowinmm: Fix logic conditions.
Jörg Höhle [Wed, 27 Jul 2011 21:44:09 +0000 (23:44 +0200)] 
winmm: Fix logic conditions.

13 years agowinmm: Fix memory leak in msacm error path.
Jörg Höhle [Wed, 27 Jul 2011 21:44:09 +0000 (23:44 +0200)] 
winmm: Fix memory leak in msacm error path.

13 years agowinmm: Assign to structs instead of using memcpy.
Jörg Höhle [Wed, 27 Jul 2011 21:44:09 +0000 (23:44 +0200)] 
winmm: Assign to structs instead of using memcpy.

13 years agowinmm: Replace one HeapAlloc with stack allocation.
Jörg Höhle [Wed, 27 Jul 2011 21:44:09 +0000 (23:44 +0200)] 
winmm: Replace one HeapAlloc with stack allocation.

13 years agomshtml: Fixed nsAString handling in navigate_anchor.
Jacek Caban [Fri, 5 Aug 2011 08:20:08 +0000 (10:20 +0200)] 
mshtml: Fixed nsAString handling in navigate_anchor.

13 years agoshell32: Make SHELL_CreateContextMenu() static.
Francois Gouget [Fri, 5 Aug 2011 07:56:41 +0000 (09:56 +0200)] 
shell32: Make SHELL_CreateContextMenu() static.

13 years agoshell32: Remove WINAPI on static functions where not needed.
Francois Gouget [Fri, 5 Aug 2011 07:56:34 +0000 (09:56 +0200)] 
shell32: Remove WINAPI on static functions where not needed.

13 years agokernel32: Implement K32GetProcessImageFileNameA().
Francois Gouget [Fri, 5 Aug 2011 07:56:26 +0000 (09:56 +0200)] 
kernel32: Implement K32GetProcessImageFileNameA().

13 years agogdi32: Always use BI_BITFIELDS for 16-bpp in GetImage.
Alexandre Julliard [Fri, 5 Aug 2011 10:33:58 +0000 (12:33 +0200)] 
gdi32: Always use BI_BITFIELDS for 16-bpp in GetImage.

13 years agogdi32: Always set compression to BI_BITFIELDS for 16-bpp DIB sections.
Alexandre Julliard [Fri, 5 Aug 2011 10:30:10 +0000 (12:30 +0200)] 
gdi32: Always set compression to BI_BITFIELDS for 16-bpp DIB sections.

13 years agogdi32: Validate the DIB parameters in functions that take a BITMAPINFO.
Alexandre Julliard [Fri, 5 Aug 2011 10:12:42 +0000 (12:12 +0200)] 
gdi32: Validate the DIB parameters in functions that take a BITMAPINFO.

13 years agogdi32: Add a missing release in the error path.
Alexandre Julliard [Fri, 5 Aug 2011 08:58:16 +0000 (10:58 +0200)] 
gdi32: Add a missing release in the error path.

13 years agoc2man: Mark the file used if a comment is found.
André Hentschel [Thu, 4 Aug 2011 19:08:37 +0000 (21:08 +0200)] 
c2man: Mark the file used if a comment is found.

13 years agowined3d: Get rid of the fglrx point sprite hack.
Henri Verbeet [Thu, 4 Aug 2011 17:53:31 +0000 (19:53 +0200)] 
wined3d: Get rid of the fglrx point sprite hack.

Fglrx 9.3 is well over 2 years old at this point. I'd strongly encourage
anyone still affected by this to upgrade to the r300g driver.

13 years agowined3d: Pass a non-NULL rectangle to surface_color_fill() in wined3d_device_clear_re...
Henri Verbeet [Thu, 4 Aug 2011 17:53:30 +0000 (19:53 +0200)] 
wined3d: Pass a non-NULL rectangle to surface_color_fill() in wined3d_device_clear_rendertarget_view().

13 years agowined3d: Always pass a non-NULL rectangle to surface_color_fill() in wined3d_device_c...
Henri Verbeet [Thu, 4 Aug 2011 17:53:29 +0000 (19:53 +0200)] 
wined3d: Always pass a non-NULL rectangle to surface_color_fill() in wined3d_device_color_fill().

13 years agoddraw: Remove rectangle validation from ddraw_surface7_BltFast().
Henri Verbeet [Thu, 4 Aug 2011 17:53:28 +0000 (19:53 +0200)] 
ddraw: Remove rectangle validation from ddraw_surface7_BltFast().

This is already done by wined3d_surface_blt().

13 years agowined3d: Implement wined3d_surface_bltfast() on top of wined3d_surface_blt().
Henri Verbeet [Thu, 4 Aug 2011 17:53:27 +0000 (19:53 +0200)] 
wined3d: Implement wined3d_surface_bltfast() on top of wined3d_surface_blt().

13 years agowinedbg: Remove dead assignment (Clang).
Frédéric Delanoy [Thu, 4 Aug 2011 17:26:00 +0000 (19:26 +0200)] 
winedbg: Remove dead assignment (Clang).

13 years agogdi32: Don't load a font replacement if any face of the real family exists.
Huw Davies [Thu, 4 Aug 2011 15:15:58 +0000 (16:15 +0100)] 
gdi32: Don't load a font replacement if any face of the real family exists.

13 years agomshtml: Added error handling to get_doc_string.
Piotr Caban [Thu, 4 Aug 2011 12:05:37 +0000 (14:05 +0200)] 
mshtml: Added error handling to get_doc_string.