Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
8068a72d
Commit
8068a72d
authored
Aug 12, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLTxtRange::duplicate implementation.
parent
37e38627
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
txtrange.c
dlls/mshtml/txtrange.c
+10
-3
No files found.
dlls/mshtml/txtrange.c
View file @
8068a72d
...
...
@@ -224,8 +224,15 @@ static HRESULT WINAPI HTMLTxtRange_parentElement(IHTMLTxtRange *iface, IHTMLElem
static
HRESULT
WINAPI
HTMLTxtRange_duplicate
(
IHTMLTxtRange
*
iface
,
IHTMLTxtRange
**
Duplicate
)
{
HTMLTxtRange
*
This
=
HTMLTXTRANGE_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
Duplicate
);
return
E_NOTIMPL
;
nsIDOMRange
*
nsrange
=
NULL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
Duplicate
);
nsIDOMRange_CloneRange
(
This
->
nsrange
,
&
nsrange
);
*
Duplicate
=
HTMLTxtRange_Create
(
nsrange
);
nsIDOMRange_Release
(
nsrange
);
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLTxtRange_inRange
(
IHTMLTxtRange
*
iface
,
IHTMLTxtRange
*
Range
,
...
...
@@ -240,7 +247,7 @@ static HRESULT WINAPI HTMLTxtRange_isEqual(IHTMLTxtRange *iface, IHTMLTxtRange *
VARIANT_BOOL
*
IsEqual
)
{
HTMLTxtRange
*
This
=
HTMLTXTRANGE_THIS
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%p %p)
\n
"
,
This
,
Range
,
IsEqual
);
return
E_NOTIMPL
;
}
...
...
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