mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
gdi32: Silence a common and expected error.
This commit is contained in:
parent
7bf4db877a
commit
5c581f079e
@ -622,7 +622,10 @@ BOOL BIDI_Reorder(
|
|||||||
}
|
}
|
||||||
if (res)
|
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;
|
j = nItems;
|
||||||
doGlyphs = FALSE;
|
doGlyphs = FALSE;
|
||||||
HeapFree(GetProcessHeap(), 0, *lpGlyphs);
|
HeapFree(GetProcessHeap(), 0, *lpGlyphs);
|
||||||
|
Loading…
Reference in New Issue
Block a user