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
c8fd7831
Commit
c8fd7831
authored
May 03, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Use the locale leading zero flag instead of hardcoding it.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f91f4348
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
vartype.c
dlls/oleaut32/vartype.c
+3
-1
No files found.
dlls/oleaut32/vartype.c
View file @
c8fd7831
...
...
@@ -6512,12 +6512,14 @@ static BSTR VARIANT_BstrReplaceDecimal(const WCHAR * buff, LCID lcid, ULONG dwFl
NUMBERFMTW
minFormat
;
minFormat
.
NumDigits
=
0
;
minFormat
.
LeadingZero
=
0
;
minFormat
.
Grouping
=
0
;
minFormat
.
lpDecimalSep
=
lpDecimalSep
;
minFormat
.
lpThousandSep
=
empty
;
minFormat
.
NegativeOrder
=
1
;
/* NLS_NEG_LEFT */
GetLocaleInfoW
(
lcid
,
LOCALE_ILZERO
|
LOCALE_RETURN_NUMBER
|
(
dwFlags
&
LOCALE_NOUSEROVERRIDE
),
(
WCHAR
*
)
&
minFormat
.
LeadingZero
,
sizeof
(
DWORD
)
/
sizeof
(
WCHAR
)
);
/* count number of decimal digits in string */
p
=
wcschr
(
buff
,
'.'
);
if
(
p
)
minFormat
.
NumDigits
=
lstrlenW
(
p
+
1
);
...
...
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