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
2f0373d2
Commit
2f0373d2
authored
Nov 23, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Forward common function from IHTMLAnchorElement to IHTMLElement2 implementation.
parent
181b3cf0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
20 deletions
+40
-20
htmlanchor.c
dlls/mshtml/htmlanchor.c
+40
-20
No files found.
dlls/mshtml/htmlanchor.c
View file @
2f0373d2
...
...
@@ -313,43 +313,55 @@ static HRESULT WINAPI HTMLAnchorElement_get_hash(IHTMLAnchorElement *iface, BSTR
static
HRESULT
WINAPI
HTMLAnchorElement_put_onblur
(
IHTMLAnchorElement
*
iface
,
VARIANT
v
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)->()
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->()
\n
"
,
This
);
return
IHTMLElement2_put_onblur
(
HTMLELEM2
(
&
This
->
element
),
v
);
}
static
HRESULT
WINAPI
HTMLAnchorElement_get_onblur
(
IHTMLAnchorElement
*
iface
,
VARIANT
*
p
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
IHTMLElement2_get_onblur
(
HTMLELEM2
(
&
This
->
element
),
p
);
}
static
HRESULT
WINAPI
HTMLAnchorElement_put_onfocus
(
IHTMLAnchorElement
*
iface
,
VARIANT
v
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)->()
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->()
\n
"
,
This
);
return
IHTMLElement2_put_onfocus
(
HTMLELEM2
(
&
This
->
element
),
v
);
}
static
HRESULT
WINAPI
HTMLAnchorElement_get_onfocus
(
IHTMLAnchorElement
*
iface
,
VARIANT
*
p
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
IHTMLElement2_get_onfocus
(
HTMLELEM2
(
&
This
->
element
),
p
);
}
static
HRESULT
WINAPI
HTMLAnchorElement_put_accessKey
(
IHTMLAnchorElement
*
iface
,
BSTR
v
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
v
));
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
v
));
return
IHTMLElement2_put_accessKey
(
HTMLELEM2
(
&
This
->
element
),
v
);
}
static
HRESULT
WINAPI
HTMLAnchorElement_get_accessKey
(
IHTMLAnchorElement
*
iface
,
BSTR
*
p
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
IHTMLElement2_get_accessKey
(
HTMLELEM2
(
&
This
->
element
),
p
);
}
static
HRESULT
WINAPI
HTMLAnchorElement_get_protocolLong
(
IHTMLAnchorElement
*
iface
,
BSTR
*
p
)
...
...
@@ -376,29 +388,37 @@ static HRESULT WINAPI HTMLAnchorElement_get_nameProp(IHTMLAnchorElement *iface,
static
HRESULT
WINAPI
HTMLAnchorElement_put_tabIndex
(
IHTMLAnchorElement
*
iface
,
short
v
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)->()
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->()
\n
"
,
This
);
return
IHTMLElement2_put_tabIndex
(
HTMLELEM2
(
&
This
->
element
),
v
);
}
static
HRESULT
WINAPI
HTMLAnchorElement_get_tabIndex
(
IHTMLAnchorElement
*
iface
,
short
*
p
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
IHTMLElement2_get_tabIndex
(
HTMLELEM2
(
&
This
->
element
),
p
);
}
static
HRESULT
WINAPI
HTMLAnchorElement_focus
(
IHTMLAnchorElement
*
iface
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLElement2_focus
(
HTMLELEM2
(
&
This
->
element
));
}
static
HRESULT
WINAPI
HTMLAnchorElement_blur
(
IHTMLAnchorElement
*
iface
)
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLElement2_blur
(
HTMLELEM2
(
&
This
->
element
));
}
#undef HTMLANCHOR_THIS
...
...
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