gdiplus: Fix a function name in a FIXME() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2019-09-16 15:59:34 +02:00 committed by Alexandre Julliard
parent bcd111dd5f
commit 0bbc9b830e
1 changed files with 1 additions and 1 deletions

View File

@ -2407,7 +2407,7 @@ static GpStatus METAFILE_PlaybackObject(GpMetafile *metafile, UINT flags, UINT d
if (pendata->PenDataFlags & PenDataCompoundLine) if (pendata->PenDataFlags & PenDataCompoundLine)
{ {
EmfPlusCompoundLineData *compoundline = (EmfPlusCompoundLineData *)((BYTE *)pendata + offset); EmfPlusCompoundLineData *compoundline = (EmfPlusCompoundLineData *)((BYTE *)pendata + offset);
FIXME("PenDataCompundLine is not supported.\n"); FIXME("PenDataCompoundLine is not supported.\n");
offset += FIELD_OFFSET(EmfPlusCompoundLineData, data) + compoundline->CompoundLineDataSize * sizeof(float); offset += FIELD_OFFSET(EmfPlusCompoundLineData, data) + compoundline->CompoundLineDataSize * sizeof(float);
} }