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
39cba73a
Commit
39cba73a
authored
Jul 01, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 03, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Specify locale in VarBstrFrom* calls.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6a252eb2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
htmltable.c
dlls/mshtml/htmltable.c
+3
-3
No files found.
dlls/mshtml/htmltable.c
View file @
39cba73a
...
...
@@ -68,13 +68,13 @@ static HRESULT var2str(const VARIANT *p, nsAString *nsstr)
return
nsAString_Init
(
nsstr
,
V_BSTR
(
p
))
?
S_OK
:
E_OUTOFMEMORY
;
case
VT_R8
:
hres
=
VarBstrFromR8
(
V_R8
(
p
),
0
,
0
,
&
str
);
hres
=
VarBstrFromR8
(
V_R8
(
p
),
MAKELCID
(
MAKELANGID
(
LANG_ENGLISH
,
SUBLANG_ENGLISH_US
),
SORT_DEFAULT
)
,
0
,
&
str
);
break
;
case
VT_R4
:
hres
=
VarBstrFromR4
(
V_R4
(
p
),
0
,
0
,
&
str
);
hres
=
VarBstrFromR4
(
V_R4
(
p
),
MAKELCID
(
MAKELANGID
(
LANG_ENGLISH
,
SUBLANG_ENGLISH_US
),
SORT_DEFAULT
)
,
0
,
&
str
);
break
;
case
VT_I4
:
hres
=
VarBstrFromI4
(
V_I4
(
p
),
0
,
0
,
&
str
);
hres
=
VarBstrFromI4
(
V_I4
(
p
),
MAKELCID
(
MAKELANGID
(
LANG_ENGLISH
,
SUBLANG_ENGLISH_US
),
SORT_DEFAULT
)
,
0
,
&
str
);
break
;
default:
FIXME
(
"unsupported arg %s
\n
"
,
debugstr_variant
(
p
));
...
...
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