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
0a346e21
Commit
0a346e21
authored
Apr 23, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added partial IHTMLDocument2::put_designMode implementation.
parent
6a7db896
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
htmldoc.c
dlls/mshtml/htmldoc.c
+17
-2
No files found.
dlls/mshtml/htmldoc.c
View file @
0a346e21
...
...
@@ -413,8 +413,23 @@ static HRESULT WINAPI HTMLDocument_get_scripts(IHTMLDocument2 *iface, IHTMLEleme
static
HRESULT
WINAPI
HTMLDocument_put_designMode
(
IHTMLDocument2
*
iface
,
BSTR
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
v
));
return
E_NOTIMPL
;
HRESULT
hres
;
static
const
WCHAR
onW
[]
=
{
'o'
,
'n'
,
0
};
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
v
));
if
(
strcmpiW
(
v
,
onW
))
{
FIXME
(
"Unsupported arg %s
\n
"
,
debugstr_w
(
v
));
return
E_NOTIMPL
;
}
hres
=
setup_edit_mode
(
This
->
doc_obj
);
if
(
FAILED
(
hres
))
return
hres
;
call_property_onchanged
(
&
This
->
cp_container
,
1014
);
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLDocument_get_designMode
(
IHTMLDocument2
*
iface
,
BSTR
*
p
)
...
...
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