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
23937c47
Commit
23937c47
authored
Oct 08, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use stored nsdoc in set_font_size.
parent
427610da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
11 deletions
+7
-11
editor.c
dlls/mshtml/editor.c
+7
-11
No files found.
dlls/mshtml/editor.c
View file @
23937c47
...
...
@@ -341,17 +341,19 @@ static void set_font_size(HTMLDocument *This, LPCWSTR size)
{
nsISelection
*
nsselection
;
PRBool
collapsed
;
nsIDOMDocument
*
nsdoc
;
nsIDOMElement
*
elem
;
nsIDOMRange
*
range
;
PRInt32
range_cnt
=
0
;
nsAString
font_str
;
nsAString
size_str
;
nsAString
val_str
;
nsresult
nsres
;
nsselection
=
get_ns_selection
(
This
);
if
(
!
This
->
nsdoc
)
{
WARN
(
"NULL nsdoc
\n
"
);
return
;
}
nsselection
=
get_ns_selection
(
This
);
if
(
!
nsselection
)
return
;
...
...
@@ -364,15 +366,11 @@ static void set_font_size(HTMLDocument *This, LPCWSTR size)
}
}
nsres
=
nsIWebNavigation_GetDocument
(
This
->
nscontainer
->
navigation
,
&
nsdoc
);
if
(
NS_FAILED
(
nsres
))
return
;
nsAString_Init
(
&
font_str
,
wszFont
);
nsAString_Init
(
&
size_str
,
wszSize
);
nsAString_Init
(
&
val_str
,
size
);
nsIDOMDocument_CreateElement
(
nsdoc
,
&
font_str
,
&
elem
);
nsIDOMDocument_CreateElement
(
This
->
nsdoc
,
&
font_str
,
&
elem
);
nsIDOMElement_SetAttribute
(
elem
,
&
size_str
,
&
val_str
);
nsISelection_GetRangeAt
(
nsselection
,
0
,
&
range
);
...
...
@@ -389,6 +387,7 @@ static void set_font_size(HTMLDocument *This, LPCWSTR size)
nsISelection_SelectAllChildren
(
nsselection
,
(
nsIDOMNode
*
)
elem
);
}
nsISelection_Release
(
nsselection
);
nsIDOMRange_Release
(
range
);
nsIDOMElement_Release
(
elem
);
...
...
@@ -396,9 +395,6 @@ static void set_font_size(HTMLDocument *This, LPCWSTR size)
nsAString_Finish
(
&
size_str
);
nsAString_Finish
(
&
val_str
);
nsISelection_Release
(
nsselection
);
nsIDOMDocument_Release
(
nsdoc
);
set_dirty
(
This
,
VARIANT_TRUE
);
}
...
...
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