gdi32: Silence a common and expected error.

This commit is contained in:
Aric Stewart 2010-09-09 15:28:15 -05:00 committed by Alexandre Julliard
parent 7bf4db877a
commit 5c581f079e
1 changed files with 4 additions and 1 deletions

View File

@ -622,7 +622,10 @@ BOOL BIDI_Reorder(
}
if (res)
{
FIXME("Unable to shape string (%x)\n",res);
if (res == USP_E_SCRIPT_NOT_IN_FONT)
TRACE("Unable to shape with currently selected font\n");
else
FIXME("Unable to shape string (%x)\n",res);
j = nItems;
doGlyphs = FALSE;
HeapFree(GetProcessHeap(), 0, *lpGlyphs);