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
40f3ad06
Commit
40f3ad06
authored
Aug 17, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Rename get_property to get_client_disp_property and make it available for other files.
parent
00b4413d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
oleobj.c
dlls/mshtml/oleobj.c
+7
-7
No files found.
dlls/mshtml/mshtml_private.h
View file @
40f3ad06
...
...
@@ -288,6 +288,7 @@ void HTMLDocument_ShowContextMenu(HTMLDocument*,DWORD,POINT*);
void
show_tooltip
(
HTMLDocument
*
,
DWORD
,
DWORD
,
LPCWSTR
);
void
hide_tooltip
(
HTMLDocument
*
);
HRESULT
get_client_disp_property
(
IOleClientSite
*
,
DISPID
,
VARIANT
*
);
HRESULT
ProtocolFactory_Create
(
REFCLSID
,
REFIID
,
void
**
);
...
...
dlls/mshtml/oleobj.c
View file @
40f3ad06
...
...
@@ -520,7 +520,7 @@ static HRESULT WINAPI OleControl_OnMnemonic(IOleControl *iface, MSG *pMsg)
return
E_NOTIMPL
;
}
static
HRESULT
get
_property
(
IOleClientSite
*
client
,
DISPID
dispid
,
VARIANT
*
res
)
HRESULT
get_client_disp
_property
(
IOleClientSite
*
client
,
DISPID
dispid
,
VARIANT
*
res
)
{
IDispatch
*
disp
=
NULL
;
DISPPARAMS
dispparams
=
{
NULL
,
0
};
...
...
@@ -548,7 +548,7 @@ static HRESULT on_change_dlcontrol(HTMLDocument *This)
VARIANT
res
;
HRESULT
hres
;
hres
=
get_property
(
This
->
client
,
DISPID_AMBIENT_DLCONTROL
,
&
res
);
hres
=
get_
client_disp_
property
(
This
->
client
,
DISPID_AMBIENT_DLCONTROL
,
&
res
);
if
(
SUCCEEDED
(
hres
))
FIXME
(
"unsupported dlcontrol %08lx
\n
"
,
V_I4
(
&
res
));
...
...
@@ -569,7 +569,7 @@ static HRESULT WINAPI OleControl_OnAmbientPropertyChange(IOleControl *iface, DIS
switch
(
dispID
)
{
case
DISPID_AMBIENT_USERMODE
:
TRACE
(
"(%p)->(DISPID_AMBIENT_USERMODE)
\n
"
,
This
);
hres
=
get_property
(
This
->
client
,
DISPID_AMBIENT_USERMODE
,
&
res
);
hres
=
get_
client_disp_
property
(
This
->
client
,
DISPID_AMBIENT_USERMODE
,
&
res
);
if
(
FAILED
(
hres
))
return
S_OK
;
...
...
@@ -590,7 +590,7 @@ static HRESULT WINAPI OleControl_OnAmbientPropertyChange(IOleControl *iface, DIS
case
DISPID_AMBIENT_OFFLINEIFNOTCONNECTED
:
TRACE
(
"(%p)->(DISPID_AMBIENT_OFFLINEIFNOTCONNECTED)
\n
"
,
This
);
on_change_dlcontrol
(
This
);
hres
=
get_property
(
This
->
client
,
DISPID_AMBIENT_OFFLINEIFNOTCONNECTED
,
&
res
);
hres
=
get_
client_disp_
property
(
This
->
client
,
DISPID_AMBIENT_OFFLINEIFNOTCONNECTED
,
&
res
);
if
(
FAILED
(
hres
))
return
S_OK
;
...
...
@@ -606,7 +606,7 @@ static HRESULT WINAPI OleControl_OnAmbientPropertyChange(IOleControl *iface, DIS
case
DISPID_AMBIENT_SILENT
:
TRACE
(
"(%p)->(DISPID_AMBIENT_SILENT)
\n
"
,
This
);
on_change_dlcontrol
(
This
);
hres
=
get_property
(
This
->
client
,
DISPID_AMBIENT_SILENT
,
&
res
);
hres
=
get_
client_disp_
property
(
This
->
client
,
DISPID_AMBIENT_SILENT
,
&
res
);
if
(
FAILED
(
hres
))
return
S_OK
;
...
...
@@ -621,7 +621,7 @@ static HRESULT WINAPI OleControl_OnAmbientPropertyChange(IOleControl *iface, DIS
return
S_OK
;
case
DISPID_AMBIENT_USERAGENT
:
TRACE
(
"(%p)->(DISPID_AMBIENT_USERAGENT)
\n
"
,
This
);
hres
=
get_property
(
This
->
client
,
DISPID_AMBIENT_USERAGENT
,
&
res
);
hres
=
get_
client_disp_
property
(
This
->
client
,
DISPID_AMBIENT_USERAGENT
,
&
res
);
if
(
FAILED
(
hres
))
return
S_OK
;
...
...
@@ -630,7 +630,7 @@ static HRESULT WINAPI OleControl_OnAmbientPropertyChange(IOleControl *iface, DIS
return
S_OK
;
case
DISPID_AMBIENT_PALETTE
:
TRACE
(
"(%p)->(DISPID_AMBIENT_PALETTE)
\n
"
,
This
);
hres
=
get_property
(
This
->
client
,
DISPID_AMBIENT_PALETTE
,
&
res
);
hres
=
get_
client_disp_
property
(
This
->
client
,
DISPID_AMBIENT_PALETTE
,
&
res
);
if
(
FAILED
(
hres
))
return
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