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
234d76f0
Commit
234d76f0
authored
Aug 12, 2005
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 12, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Added IOleObject::Close implementation.
- OLEIVERB_INPLACEACTIVATE is the same as OLEIVERB_UIACTIVATE.
parent
bc94cbb5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
oleobj.c
dlls/mshtml/oleobj.c
+9
-3
No files found.
dlls/mshtml/oleobj.c
View file @
234d76f0
...
...
@@ -167,7 +167,13 @@ static HRESULT WINAPI OleObject_Close(IOleObject *iface, DWORD dwSaveOption)
HTMLDocument
*
This
=
OLEOBJ_THIS
(
iface
);
HRESULT
hres
;
FIXME
(
"(%p)->(%08lx)
\n
"
,
This
,
dwSaveOption
);
TRACE
(
"(%p)->(%08lx)
\n
"
,
This
,
dwSaveOption
);
if
(
dwSaveOption
==
OLECLOSE_PROMPTSAVE
)
FIXME
(
"OLECLOSE_PROMPTSAVE not implemented
\n
"
);
if
(
This
->
in_place_active
)
IOleInPlaceObjectWindowless_InPlaceDeactivate
(
INPLACEWIN
(
This
));
if
(
This
->
client
)
{
IOleContainer
*
container
;
...
...
@@ -219,7 +225,7 @@ static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, LPMSG lpms
TRACE
(
"(%p)->(%ld %p %p %ld %p %p)
\n
"
,
This
,
iVerb
,
lpmsg
,
pActiveSite
,
lindex
,
hwndParent
,
lprcPosRect
);
if
(
iVerb
!=
OLEIVERB_SHOW
&&
iVerb
!=
OLEIVERB_UIACTIVATE
)
{
if
(
iVerb
!=
OLEIVERB_SHOW
&&
iVerb
!=
OLEIVERB_UIACTIVATE
&&
iVerb
!=
OLEIVERB_INPLACEACTIVATE
)
{
FIXME
(
"iVerb = %ld not supported
\n
"
,
iVerb
);
return
E_NOTIMPL
;
}
...
...
@@ -727,7 +733,7 @@ static HRESULT WINAPI OleCommandTarget_QueryStatus(IOleCommandTarget *iface, con
hres
=
OLECMDERR_E_NOTSUPPORTED
;
}
else
{
prgCmds
[
i
].
cmdf
=
exec_table
[
prgCmds
[
i
].
cmdID
].
cmdf
;
TRACE
(
"cmdID = %ld returning %lx
\n
"
,
prgCmds
[
i
].
cmdID
,
prgCmds
[
i
].
cmd
ID
);
TRACE
(
"cmdID = %ld returning %lx
\n
"
,
prgCmds
[
i
].
cmdID
,
prgCmds
[
i
].
cmd
f
);
hres
=
S_OK
;
}
}
...
...
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