Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2aa419e8
Commit
2aa419e8
authored
Jun 10, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 11, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IDM_RESPECTVISIBILITY_INDESIGN command stub implementation.
parent
bd5d6f75
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
olecmd.c
dlls/mshtml/olecmd.c
+9
-1
No files found.
dlls/mshtml/olecmd.c
View file @
2aa419e8
/*
* Copyright 2005-200
6
Jacek Caban for CodeWeavers
* Copyright 2005-200
7
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
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment