Commit 938cd952 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

dwrite: Print a FIXME only once in dwritetextanalyzer_AnalyzeNumberSubstitution.

parent ad887d60
......@@ -867,7 +867,10 @@ done:
static HRESULT WINAPI dwritetextanalyzer_AnalyzeNumberSubstitution(IDWriteTextAnalyzer2 *iface,
IDWriteTextAnalysisSource* source, UINT32 position, UINT32 length, IDWriteTextAnalysisSink* sink)
{
FIXME("(%p %u %u %p): stub\n", source, position, length, sink);
static int once;
if (!once++)
FIXME("(%p %u %u %p): stub\n", source, position, length, sink);
return S_OK;
}
......
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