mirror of
https://github.com/reactos/wine.git
synced 2025-02-24 15:01:41 +00:00
user32: Check return code from ScriptStringAnalyse.
This commit is contained in:
parent
509e557608
commit
4bc418b356
@ -403,6 +403,7 @@ static SCRIPT_STRING_ANALYSIS EDIT_UpdateUniscribeData_linedef(EDITSTATE *es, HD
|
||||
HFONT old_font = NULL;
|
||||
HDC udc = dc;
|
||||
SCRIPT_TABDEF tabdef;
|
||||
HRESULT hr;
|
||||
|
||||
if (!udc)
|
||||
udc = GetDC(es->hwndSelf);
|
||||
@ -414,7 +415,15 @@ static SCRIPT_STRING_ANALYSIS EDIT_UpdateUniscribeData_linedef(EDITSTATE *es, HD
|
||||
tabdef.pTabStops = es->tabs;
|
||||
tabdef.iTabOrigin = 0;
|
||||
|
||||
ScriptStringAnalyse(udc, &es->text[index], line_def->net_length, (1.5*line_def->net_length+16), -1, SSA_LINK|SSA_FALLBACK|SSA_GLYPHS|SSA_TAB, -1, NULL, NULL, NULL, &tabdef, NULL, &line_def->ssa);
|
||||
hr = ScriptStringAnalyse(udc, &es->text[index], line_def->net_length,
|
||||
(1.5*line_def->net_length+16), -1,
|
||||
SSA_LINK|SSA_FALLBACK|SSA_GLYPHS|SSA_TAB, -1,
|
||||
NULL, NULL, NULL, &tabdef, NULL, &line_def->ssa);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
WARN("ScriptStringAnalyse failed (%x)\n",hr);
|
||||
line_def->ssa = NULL;
|
||||
}
|
||||
|
||||
if (es->font)
|
||||
SelectObject(udc, old_font);
|
||||
|
Loading…
x
Reference in New Issue
Block a user