Commit c8ac1909 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dwrite: Silence GetPropertyValues() fixme.

parent a6bdbc71
......@@ -7212,7 +7212,13 @@ static HRESULT WINAPI dwritefontset_GetPropertyValues_(IDWriteFontSet3 *iface, D
static HRESULT WINAPI dwritefontset_GetPropertyValues(IDWriteFontSet3 *iface, UINT32 index, DWRITE_FONT_PROPERTY_ID id,
BOOL *exists, IDWriteLocalizedStrings **values)
{
FIXME("%p, %u, %d, %p, %p.\n", iface, index, id, exists, values);
static int once;
if (!once++)
FIXME("%p: stub\n", iface);
if (!once++)
FIXME("%p, %u, %d, %p, %p.\n", iface, index, id, exists, values);
return E_NOTIMPL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment