mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1217275 Fix missing \n in IMMHandler::HandleDocumentFeed(), it was replaced to empty string accidentally r=m_kato
This commit is contained in:
parent
1974efd760
commit
40b9cc4ad8
@ -1745,7 +1745,7 @@ IMMHandler::HandleDocumentFeed(nsWindow* aWindow,
|
||||
|
||||
// Get the focused paragraph, we decide that it starts from the previous CRLF
|
||||
// (or start of the editor) to the next one (or the end of the editor).
|
||||
int32_t paragraphStart = str.RFind("", false, targetOffset, -1) + 1;
|
||||
int32_t paragraphStart = str.RFind("\n", false, targetOffset, -1) + 1;
|
||||
int32_t paragraphEnd =
|
||||
str.Find("\r", false, targetOffset + targetLength, -1);
|
||||
if (paragraphEnd < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user