Module: wine Branch: master Commit: 197f3f4c23848614500479c09b18c81368d55c94 URL: http://source.winehq.org/git/wine.git/?a=commit;h=197f3f4c23848614500479c09b...
Author: Dylan Smith dylan.ah.smith@gmail.com Date: Fri Oct 10 16:36:54 2008 -0400
richedit: Added EM_SETMARGINS to the list of unsupported messages.
---
dlls/riched20/editor.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index f78e515..8caa1f8 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -101,6 +101,7 @@ - EM_SETIMEOPTIONS 1.0asian - EM_SETLANGOPTIONS 2.0 - EM_SETLIMITTEXT + - EM_SETMARGINS + EM_SETMODIFY (not sure if implementation is correct) - EM_SETOLECALLBACK + EM_SETOPTIONS (partially implemented) @@ -2549,6 +2550,7 @@ static LRESULT RichEditWndProc_common(HWND hWnd, UINT msg, WPARAM wParam, UNSUPPORTED_MSG(EM_SETEDITSTYLE) UNSUPPORTED_MSG(EM_SETFONTSIZE) UNSUPPORTED_MSG(EM_SETLANGOPTIONS) + UNSUPPORTED_MSG(EM_SETMARGINS) UNSUPPORTED_MSG(EM_SETPALETTE) UNSUPPORTED_MSG(EM_SETTABSTOPS) UNSUPPORTED_MSG(EM_SETTYPOGRAPHYOPTIONS)