Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d90016ff
Commit
d90016ff
authored
Nov 24, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 25, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Improved IDM_RESPECTVISIBILITY_INDESIGN stub.
parent
87a9b51c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
olecmd.c
dlls/mshtml/olecmd.c
+7
-2
No files found.
dlls/mshtml/olecmd.c
View file @
d90016ff
...
...
@@ -615,8 +615,13 @@ static HRESULT exec_baselinefont3(HTMLDocument *This, DWORD cmdexecopt, VARIANT
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
;
TRACE
(
"(%p)->(%x %s %p)
\n
"
,
This
,
cmdexecopt
,
debugstr_variant
(
in
),
out
);
/* This is turned on by default in Gecko. */
if
(
!
in
||
V_VT
(
in
)
!=
VT_BOOL
||
!
V_BOOL
(
in
))
FIXME
(
"Unsupported argument %s
\n
"
,
debugstr_variant
(
in
));
return
S_OK
;
}
static
HRESULT
query_enabled_stub
(
HTMLDocument
*
This
,
OLECMD
*
cmd
)
...
...
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