Skip to content
Snippets Groups Projects
Commit d6e41453 authored by Bernhard Übelacker's avatar Bernhard Übelacker Committed by Joel Holdsworth
Browse files

TEMP: uxtheme: Print fixme just once.

0118:fixme:uxtheme:DrawThemeTextEx unsupported flags 0x00002800
parent 4b12c49c
Branches
No related tags found
No related merge requests found
......@@ -1787,8 +1787,10 @@ HRESULT WINAPI DrawThemeTextEx(HTHEME hTheme, HDC hdc, int iPartId, int iStateId
if(!hTheme)
return E_HANDLE;
if (options->dwFlags & ~(DTT_TEXTCOLOR | DTT_FONTPROP))
FIXME("unsupported flags 0x%08lx\n", options->dwFlags);
if (options->dwFlags & ~(DTT_TEXTCOLOR | DTT_FONTPROP)) {
static int once;
if (!once++) FIXME("unsupported flags 0x%08lx\n", options->dwFlags);
}
if (options->dwFlags & DTT_FONTPROP)
fontProp = options->iFontPropId;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment