dwrite: Fix typo in SetStrikethrough().

This commit is contained in:
Nikolay Sivov 2015-05-01 11:33:24 +03:00 committed by Alexandre Julliard
parent 57e2d9ef75
commit 1d815a2801
1 changed files with 1 additions and 1 deletions

View File

@ -1533,7 +1533,7 @@ static HRESULT WINAPI dwritetextlayout_SetStrikethrough(IDWriteTextLayout2 *ifac
TRACE("(%p)->(%d %s)\n", This, strikethrough, debugstr_range(&range));
value.range = range;
value.u.underline = strikethrough;
value.u.strikethrough = strikethrough;
return set_layout_range_attr(This, LAYOUT_RANGE_ATTR_STRIKETHROUGH, &value);
}