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
f1bb6722
Commit
f1bb6722
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_nsdoc in exec_indent.
parent
fa138835
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
txtrange.c
dlls/mshtml/txtrange.c
+3
-9
No files found.
dlls/mshtml/txtrange.c
View file @
f1bb6722
...
...
@@ -1778,10 +1778,9 @@ static HRESULT WINAPI RangeCommandTarget_QueryStatus(IOleCommandTarget *iface, c
static
HRESULT
exec_indent
(
HTMLTxtRange
*
This
,
VARIANT
*
in
,
VARIANT
*
out
)
{
nsIDOMHTMLElement
*
blockquote_elem
,
*
p_elem
;
nsIDOMDocumentFragment
*
fragment
;
nsIDOMElement
*
blockquote_elem
,
*
p_elem
;
nsIDOMNode
*
tmp
;
nsAString
tag_str
;
static
const
PRUnichar
blockquoteW
[]
=
{
'B'
,
'L'
,
'O'
,
'C'
,
'K'
,
'Q'
,
'U'
,
'O'
,
'T'
,
'E'
,
0
};
static
const
PRUnichar
pW
[]
=
{
'P'
,
0
};
...
...
@@ -1793,13 +1792,8 @@ static HRESULT exec_indent(HTMLTxtRange *This, VARIANT *in, VARIANT *out)
return
E_NOTIMPL
;
}
nsAString_Init
(
&
tag_str
,
blockquoteW
);
nsIDOMHTMLDocument_CreateElement
(
This
->
doc
->
basedoc
.
nsdoc
,
&
tag_str
,
&
blockquote_elem
);
nsAString_Finish
(
&
tag_str
);
nsAString_Init
(
&
tag_str
,
pW
);
nsIDOMDocument_CreateElement
(
This
->
doc
->
basedoc
.
nsdoc
,
&
tag_str
,
&
p_elem
);
nsAString_Finish
(
&
tag_str
);
create_nselem
(
This
->
doc
,
blockquoteW
,
&
blockquote_elem
);
create_nselem
(
This
->
doc
,
pW
,
&
p_elem
);
nsIDOMRange_ExtractContents
(
This
->
nsrange
,
&
fragment
);
nsIDOMElement_AppendChild
(
p_elem
,
(
nsIDOMNode
*
)
fragment
,
&
tmp
);
...
...
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