Jacek Caban : mshtml: Added Exec(IDM_FONT) stub implementation.

Alexandre Julliard julliard at winehq.org
Wed Sep 19 08:16:27 CDT 2007


Module: wine
Branch: master
Commit: 21214ed3d4ed55e719c7f1c6c6e7410d9be3f880
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=21214ed3d4ed55e719c7f1c6c6e7410d9be3f880

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Wed Sep 19 13:35:30 2007 +0200

mshtml: Added Exec(IDM_FONT) stub implementation.

---

 dlls/mshtml/editor.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/dlls/mshtml/editor.c b/dlls/mshtml/editor.c
index fa2e75e..4dc4c08 100644
--- a/dlls/mshtml/editor.c
+++ b/dlls/mshtml/editor.c
@@ -780,6 +780,13 @@ static HRESULT exec_fontsize(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in,
     return S_OK;
 }
 
+static HRESULT exec_font(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in, VARIANT *out)
+{
+
+    FIXME("(%p)->(%p %p)\n", This, in, out);
+    return E_NOTIMPL;
+}
+
 static HRESULT exec_selectall(HTMLDocument *This, DWORD cmdexecopt, VARIANT *in, VARIANT *out)
 {
     TRACE("(%p)\n", This);
@@ -1359,6 +1366,7 @@ const cmdtable_t editmode_cmds[] = {
     {IDM_JUSTIFYCENTER,   query_justify,        exec_justifycenter},
     {IDM_JUSTIFYRIGHT,    query_justify,        exec_justifyright},
     {IDM_JUSTIFYLEFT,     query_justify,        exec_justifyleft},
+    {IDM_FONT,            NULL,                 exec_font},
     {IDM_UNDERLINE,       query_edit_status,    exec_underline},
     {IDM_HORIZONTALLINE,  query_edit_status,    exec_horizontalline},
     {IDM_ORDERLIST,       query_edit_status,    exec_orderlist},




More information about the wine-cvs mailing list