richedit: Added EM_SETMARGINS to the list of unsupported messages.
This commit is contained in:
parent
6f88b4f2a7
commit
197f3f4c23
|
@ -101,6 +101,7 @@
|
||||||
- EM_SETIMEOPTIONS 1.0asian
|
- EM_SETIMEOPTIONS 1.0asian
|
||||||
- EM_SETLANGOPTIONS 2.0
|
- EM_SETLANGOPTIONS 2.0
|
||||||
- EM_SETLIMITTEXT
|
- EM_SETLIMITTEXT
|
||||||
|
- EM_SETMARGINS
|
||||||
+ EM_SETMODIFY (not sure if implementation is correct)
|
+ EM_SETMODIFY (not sure if implementation is correct)
|
||||||
- EM_SETOLECALLBACK
|
- EM_SETOLECALLBACK
|
||||||
+ EM_SETOPTIONS (partially implemented)
|
+ 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_SETEDITSTYLE)
|
||||||
UNSUPPORTED_MSG(EM_SETFONTSIZE)
|
UNSUPPORTED_MSG(EM_SETFONTSIZE)
|
||||||
UNSUPPORTED_MSG(EM_SETLANGOPTIONS)
|
UNSUPPORTED_MSG(EM_SETLANGOPTIONS)
|
||||||
|
UNSUPPORTED_MSG(EM_SETMARGINS)
|
||||||
UNSUPPORTED_MSG(EM_SETPALETTE)
|
UNSUPPORTED_MSG(EM_SETPALETTE)
|
||||||
UNSUPPORTED_MSG(EM_SETTABSTOPS)
|
UNSUPPORTED_MSG(EM_SETTABSTOPS)
|
||||||
UNSUPPORTED_MSG(EM_SETTYPOGRAPHYOPTIONS)
|
UNSUPPORTED_MSG(EM_SETTYPOGRAPHYOPTIONS)
|
||||||
|
|
Loading…
Reference in New Issue