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
02066602
Commit
02066602
authored
Feb 16, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Implement ::replaceData() for Text, Comment and CDATA nodes.
parent
88d82187
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
6 deletions
+33
-6
cdata.c
dlls/msxml3/cdata.c
+11
-2
comment.c
dlls/msxml3/comment.c
+11
-2
domdoc.c
dlls/msxml3/tests/domdoc.c
+0
-0
text.c
dlls/msxml3/text.c
+11
-2
No files found.
dlls/msxml3/cdata.c
View file @
02066602
...
...
@@ -705,8 +705,17 @@ static HRESULT WINAPI domcdata_replaceData(
IXMLDOMCDATASection
*
iface
,
LONG
offset
,
LONG
count
,
BSTR
p
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
domcdata
*
This
=
impl_from_IXMLDOMCDATASection
(
iface
);
HRESULT
hr
;
TRACE
(
"%p %d %d %s
\n
"
,
This
,
offset
,
count
,
debugstr_w
(
p
));
hr
=
IXMLDOMCDATASection_deleteData
(
iface
,
offset
,
count
);
if
(
hr
==
S_OK
)
hr
=
IXMLDOMCDATASection_insertData
(
iface
,
offset
,
p
);
return
hr
;
}
static
HRESULT
WINAPI
domcdata_splitText
(
...
...
dlls/msxml3/comment.c
View file @
02066602
...
...
@@ -713,8 +713,17 @@ static HRESULT WINAPI domcomment_replaceData(
IXMLDOMComment
*
iface
,
LONG
offset
,
LONG
count
,
BSTR
p
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
domcomment
*
This
=
impl_from_IXMLDOMComment
(
iface
);
HRESULT
hr
;
TRACE
(
"%p %d %d %s
\n
"
,
This
,
offset
,
count
,
debugstr_w
(
p
));
hr
=
IXMLDOMComment_deleteData
(
iface
,
offset
,
count
);
if
(
hr
==
S_OK
)
hr
=
IXMLDOMComment_insertData
(
iface
,
offset
,
p
);
return
hr
;
}
static
const
struct
IXMLDOMCommentVtbl
domcomment_vtbl
=
...
...
dlls/msxml3/tests/domdoc.c
View file @
02066602
This diff is collapsed.
Click to expand it.
dlls/msxml3/text.c
View file @
02066602
...
...
@@ -706,8 +706,17 @@ static HRESULT WINAPI domtext_replaceData(
IXMLDOMText
*
iface
,
LONG
offset
,
LONG
count
,
BSTR
p
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
domtext
*
This
=
impl_from_IXMLDOMText
(
iface
);
HRESULT
hr
;
TRACE
(
"%p %d %d %s
\n
"
,
This
,
offset
,
count
,
debugstr_w
(
p
));
hr
=
IXMLDOMText_deleteData
(
iface
,
offset
,
count
);
if
(
hr
==
S_OK
)
hr
=
IXMLDOMText_insertData
(
iface
,
offset
,
p
);
return
hr
;
}
static
HRESULT
WINAPI
domtext_splitText
(
...
...
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