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
dd04cbc5
Commit
dd04cbc5
authored
Oct 19, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 20, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use create_nselem in IHTMLOptionFactory::create.
parent
9ce3e6b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
htmloption.c
dlls/mshtml/htmloption.c
+7
-13
No files found.
dlls/mshtml/htmloption.c
View file @
dd04cbc5
...
...
@@ -448,9 +448,7 @@ static HRESULT WINAPI HTMLOptionElementFactory_create(IHTMLOptionElementFactory
IHTMLOptionElement
**
optelem
)
{
HTMLOptionElementFactory
*
This
=
HTMLOPTFACTORY_THIS
(
iface
);
nsIDOMElement
*
nselem
;
nsAString
option_str
;
nsresult
nsres
;
nsIDOMHTMLElement
*
nselem
;
HRESULT
hres
;
static
const
PRUnichar
optionW
[]
=
{
'O'
,
'P'
,
'T'
,
'I'
,
'O'
,
'N'
,
0
};
...
...
@@ -458,24 +456,20 @@ static HRESULT WINAPI HTMLOptionElementFactory_create(IHTMLOptionElementFactory
TRACE
(
"(%p)->(%s %s %s %s %p)
\n
"
,
This
,
debugstr_variant
(
&
text
),
debugstr_variant
(
&
value
),
debugstr_variant
(
&
defaultselected
),
debugstr_variant
(
&
selected
),
optelem
);
if
(
!
This
->
window
||
!
This
->
window
->
doc
||
!
This
->
window
->
doc
->
basedoc
.
nsdoc
)
{
WARN
(
"NULL
ns
doc
\n
"
);
if
(
!
This
->
window
||
!
This
->
window
->
doc
)
{
WARN
(
"NULL doc
\n
"
);
return
E_UNEXPECTED
;
}
*
optelem
=
NULL
;
nsAString_Init
(
&
option_str
,
optionW
);
nsres
=
nsIDOMHTMLDocument_CreateElement
(
This
->
window
->
doc
->
basedoc
.
nsdoc
,
&
option_str
,
&
nselem
);
nsAString_Finish
(
&
option_str
);
if
(
NS_FAILED
(
nsres
))
{
ERR
(
"CreateElement failed: %08x
\n
"
,
nsres
);
return
E_FAIL
;
}
hres
=
create_nselem
(
This
->
window
->
doc
,
optionW
,
&
nselem
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
IHTMLDOMNode_QueryInterface
(
HTMLDOMNODE
(
get_node
(
This
->
window
->
doc
,
(
nsIDOMNode
*
)
nselem
,
TRUE
)),
&
IID_IHTMLOptionElement
,
(
void
**
)
optelem
);
nsIDOMElement_Release
(
nselem
);
nsIDOM
HTML
Element_Release
(
nselem
);
if
(
V_VT
(
&
text
)
==
VT_BSTR
)
IHTMLOptionElement_put_text
(
*
optelem
,
V_BSTR
(
&
text
));
...
...
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