Commit 2aa419e8 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Added IDM_RESPECTVISIBILITY_INDESIGN command stub implementation.

parent bd5d6f75
/*
* Copyright 2005-2006 Jacek Caban for CodeWeavers
* Copyright 2005-2007 Jacek Caban for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
......@@ -576,6 +576,13 @@ static HRESULT exec_baselinefont3(HTMLDocument *This, DWORD cmdexecopt, VARIANT
return S_OK;
}
static HRESULT exec_respectvisibility_indesign(HTMLDocument *This, DWORD cmdexecopt,
VARIANT *in, VARIANT *out)
{
FIXME("(%p)->(%08x %p %p)\n", This, cmdexecopt, in, out);
return E_NOTIMPL;
}
static HRESULT query_enabled_stub(HTMLDocument *This, OLECMD *cmd)
{
switch(cmd->cmdID) {
......@@ -653,6 +660,7 @@ static const cmdtable_t base_cmds[] = {
{IDM_BASELINEFONT3, NULL, exec_baselinefont3},
{IDM_BLOCKDIRLTR, query_enabled_stub, NULL},
{IDM_BLOCKDIRRTL, query_enabled_stub, NULL},
{IDM_RESPECTVISIBILITY_INDESIGN, NULL, exec_respectvisibility_indesign},
{0,NULL,NULL}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment