Jacek Caban : mshtml: Added "indent" command support to execCommand.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Dec 1 14:53:05 CST 2014


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Dec  1 12:55:34 2014 +0100

mshtml: Added "indent" command support to execCommand.

---

 dlls/mshtml/htmldoc.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c
index edc91e6..7a577d9 100644
--- a/dlls/mshtml/htmldoc.c
+++ b/dlls/mshtml/htmldoc.c
@@ -1098,6 +1098,8 @@ static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
 
 static const WCHAR fontnameW[] =
     {'f','o','n','t','n','a','m','e',0};
+static const WCHAR indentW[] =
+    {'i','n','d','e','n','t',0};
 static const WCHAR insertorderedlistW[] =
     {'i','n','s','e','r','t','o','r','d','e','r','e','d','l','i','s','t',0};
 static const WCHAR insertunorderedlistW[] =
@@ -1112,6 +1114,7 @@ static const struct {
     OLECMDID id;
 }command_names[] = {
     {fontnameW, IDM_FONTNAME},
+    {indentW, IDM_INDENT},
     {insertorderedlistW, IDM_ORDERLIST},
     {insertunorderedlistW, IDM_UNORDERLIST},
     {outdentW, IDM_OUTDENT},




More information about the wine-cvs mailing list