riched20: Pass a run ptr to the run drawing function.
Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7875a77b23
commit
87c4d217ed
|
@ -440,9 +440,8 @@ static void ME_DebugWrite(HDC hDC, const POINT *pt, LPCWSTR szText) {
|
|||
SetTextColor(hDC, color);
|
||||
}
|
||||
|
||||
static void ME_DrawRun(ME_Context *c, int x, int y, ME_DisplayItem *rundi, ME_Paragraph *para)
|
||||
static void ME_DrawRun( ME_Context *c, int x, int y, ME_Run *run, ME_Paragraph *para )
|
||||
{
|
||||
ME_Run *run = &rundi->member.run;
|
||||
ME_DisplayItem *start;
|
||||
int runofs = run->nCharOfs+para->nCharOfs;
|
||||
int nSelFrom, nSelTo;
|
||||
|
@ -450,7 +449,7 @@ static void ME_DrawRun(ME_Context *c, int x, int y, ME_DisplayItem *rundi, ME_Pa
|
|||
if (run->nFlags & MERF_HIDDEN)
|
||||
return;
|
||||
|
||||
start = ME_FindItemBack(rundi, diStartRow);
|
||||
start = ME_FindItemBack( run_get_di( run ), diStartRow );
|
||||
ME_GetSelectionOfs(c->editor, &nSelFrom, &nSelTo);
|
||||
|
||||
/* Draw selected end-of-paragraph mark */
|
||||
|
@ -1004,7 +1003,7 @@ static void ME_DrawParagraph(ME_Context *c, ME_DisplayItem *paragraph)
|
|||
}
|
||||
if (visible)
|
||||
ME_DrawRun( c, c->pt.x + run->pt.x,
|
||||
c->pt.y + para->pt.y + run->pt.y + baseline, p, para);
|
||||
c->pt.y + para->pt.y + run->pt.y + baseline, run, para );
|
||||
if (me_debug)
|
||||
{
|
||||
static const WCHAR wszRunDebug[] = {'[','%','d',':','%','x',']',' ','%','l','s',0};
|
||||
|
|
Loading…
Reference in New Issue