Commit c3f112e5 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

riched20: Replace an if-statement with empty body with a FIXME comment.

parent 00e77937
...@@ -765,8 +765,8 @@ void ME_MouseMove(ME_TextEditor *editor, int x, int y) ...@@ -765,8 +765,8 @@ void ME_MouseMove(ME_TextEditor *editor, int x, int y)
y += ME_GetYScrollPos(editor); y += ME_GetYScrollPos(editor);
tmp_cursor = editor->pCursors[0]; tmp_cursor = editor->pCursors[0];
if (!ME_FindPixelPos(editor, x, y, &tmp_cursor, &editor->bCaretAtEnd)) /* FIXME: do something with the return value of ME_FindPixelPos */
/* return */; ME_FindPixelPos(editor, x, y, &tmp_cursor, &editor->bCaretAtEnd);
if (tmp_cursor.pRun == editor->pCursors[0].pRun && if (tmp_cursor.pRun == editor->pCursors[0].pRun &&
tmp_cursor.nOffset == editor->pCursors[0].nOffset) tmp_cursor.nOffset == editor->pCursors[0].nOffset)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment