Henri Verbeet : d2d1: Pass the correct vtbl in d2d_linear_gradient_brush_init().
Module: wine Branch: master Commit: 56a0e32317dd711f50bdcdc0e19e4418fe404ead URL: http://source.winehq.org/git/wine.git/?a=commit;h=56a0e32317dd711f50bdcdc0e1... Author: Henri Verbeet <hverbeet(a)codeweavers.com> Date: Mon Nov 3 08:59:36 2014 +0100 d2d1: Pass the correct vtbl in d2d_linear_gradient_brush_init(). --- dlls/d2d1/brush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d2d1/brush.c b/dlls/d2d1/brush.c index ed92d60..6e46036 100644 --- a/dlls/d2d1/brush.c +++ b/dlls/d2d1/brush.c @@ -412,5 +412,5 @@ void d2d_linear_gradient_brush_init(struct d2d_brush *brush, ID2D1RenderTarget * { FIXME("Ignoring brush properties.\n"); - d2d_brush_init(brush, render_target, brush_desc, (ID2D1BrushVtbl *)&d2d_solid_color_brush_vtbl); + d2d_brush_init(brush, render_target, brush_desc, (ID2D1BrushVtbl *)&d2d_linear_gradient_brush_vtbl); }
participants (1)
-
Alexandre Julliard