Fix unnecessary (and harmful) repeated statement.
This commit is contained in:
parent
bda8a5c08a
commit
07c4dc461e
|
@ -1734,7 +1734,6 @@ LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lP
|
||||||
pt.x = 0;
|
pt.x = 0;
|
||||||
pt.y = editor->pBuffer->pLast->member.para.nYPos;
|
pt.y = editor->pBuffer->pLast->member.para.nYPos;
|
||||||
}
|
}
|
||||||
pt.y += ME_GetParagraph(pRun)->member.para.nYPos;
|
|
||||||
if (wParam >= 0x40000) {
|
if (wParam >= 0x40000) {
|
||||||
*(POINTL *)wParam = pt;
|
*(POINTL *)wParam = pt;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue