Module: wine Branch: master Commit: c96a273f91bbdd4ba4810aec738097022f9207d6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c96a273f91bbdd4ba4810aec73...
Author: Dylan Smith dylan.ah.smith@gmail.com Date: Wed Jun 25 11:33:40 2008 -0400
richedit: Moved function declarations in header to reflect locations of definitions.
---
dlls/riched20/editor.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/riched20/editor.h b/dlls/riched20/editor.h index 61ecf1b..0a8af53 100644 --- a/dlls/riched20/editor.h +++ b/dlls/riched20/editor.h @@ -214,8 +214,6 @@ void ME_DestroyContext(ME_Context *c, HWND release); BOOL ME_WrapMarkedParagraphs(ME_TextEditor *editor); void ME_InvalidateMarkedParagraphs(ME_TextEditor *editor); void ME_SendRequestResize(ME_TextEditor *editor, BOOL force); -int ME_twips2pointsX(ME_Context *c, int x); -int ME_twips2pointsY(ME_Context *c, int y);
/* para.c */ ME_DisplayItem *ME_GetParagraph(ME_DisplayItem *run); @@ -244,6 +242,8 @@ void ME_EnsureVisible(ME_TextEditor *editor, ME_DisplayItem *pRun); void ME_InvalidateSelection(ME_TextEditor *editor); void ME_QueueInvalidateFromCursor(ME_TextEditor *editor, int nCursor); BOOL ME_SetZoom(ME_TextEditor *editor, int numerator, int denominator); +int ME_twips2pointsX(ME_Context *c, int x); +int ME_twips2pointsY(ME_Context *c, int y);
/* scroll functions in paint.c */