dwrite: Print a FIXME only once in dwritetextanalyzer_AnalyzeNumberSubstitution.

Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Louis Lenders 2016-04-25 16:51:36 +02:00 committed by Alexandre Julliard
parent ad887d6049
commit 938cd952ad
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}