basic/qa/basic_coverage/da-DK/cdbl-2.vb |   14 ++++++++++++++
 1 file changed, 14 insertions(+)

New commits:
commit f69acf929b4a8131370ab05ab0886334e1fc566d
Author: Noel Power <[email protected]>
Date:   Thu Mar 21 11:08:27 2013 +0000

    another variation of the localised Cdbl test
    
    Change-Id: Icf6dd7428cb88f1891c6d816a24a4126ea2cc135

diff --git a/basic/qa/basic_coverage/da-DK/cdbl-2.vb 
b/basic/qa/basic_coverage/da-DK/cdbl-2.vb
new file mode 100644
index 0000000..a219304
--- /dev/null
+++ b/basic/qa/basic_coverage/da-DK/cdbl-2.vb
@@ -0,0 +1,14 @@
+Function doUnitTest() as Integer
+    Dim A As String
+    Dim B As Double
+    Dim Expected As Double
+    A = "222,222"
+    ' in da-DK locale ',' is the decimal separator
+    Expected = 222.222
+    B = Cdbl(A)
+    If B <> Expected Then
+        doUnitTest = 0
+    Else
+        doUnitTest = 1
+    End If
+End Function
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to