From c3f112e52dbecbb2c1785cfbd8491d6f34814a93 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Fri, 7 Jul 2006 00:29:03 +0200 Subject: [PATCH] riched20: Replace an if-statement with empty body with a FIXME comment. --- dlls/riched20/caret.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/riched20/caret.c b/dlls/riched20/caret.c index 057e5d867db..da52288b506 100644 --- a/dlls/riched20/caret.c +++ b/dlls/riched20/caret.c @@ -765,8 +765,8 @@ void ME_MouseMove(ME_TextEditor *editor, int x, int y) y += ME_GetYScrollPos(editor); tmp_cursor = editor->pCursors[0]; - if (!ME_FindPixelPos(editor, x, y, &tmp_cursor, &editor->bCaretAtEnd)) - /* return */; + /* FIXME: do something with the return value of ME_FindPixelPos */ + ME_FindPixelPos(editor, x, y, &tmp_cursor, &editor->bCaretAtEnd); if (tmp_cursor.pRun == editor->pCursors[0].pRun && tmp_cursor.nOffset == editor->pCursors[0].nOffset) -- 2.11.4.GIT