repo.or.cz
/
LibreOffice.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update emoji autocorrect entries from po-files
[LibreOffice.git]
/
basic
/
qa
/
basic_coverage
/
da-DK
/
cdbl-2.vb
blob
a219304d42309ae9d20e149cd74b8cfd6247debc
1
Function
doUnitTest
()
as
Integer
2
Dim
A
As
String
3
Dim
B
As
Double
4
Dim
Expected
As
Double
5
A
=
"222,222"
6
' in da-DK locale ',' is the decimal separator
7
Expected
=
222.222
8
B
=
Cdbl
(
A
)
9
If
B
<>
Expected
Then
10
doUnitTest
=
0
11
Else
12
doUnitTest
=
1
13
End If
14
End Function