diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-01-31 14:56:23 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-01-31 16:39:09 +0100 |
commit | b794ea5ba1408418aa3987d8538846890f6413d8 (patch) | |
tree | 32f95a90757cdb1092ec645a5610b8cfc2032a79 /extensions | |
parent | 8ed1e348e0577e7572e545c19d97f2412040b3fe (diff) |
Fix typos
Complete commit 8310642c6c404ea501b8be5ae4d12860e1562ac9
It passed "make check"
Change-Id: If599bf7b66c972f225f88802d10c70bea4783a38
Reviewed-on: https://gerrit.libreoffice.org/48998
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/test/ole/StarBasic_OleClient/oleclient.bas | 4 | ||||
-rw-r--r-- | extensions/test/ole/VisualBasic/Module1.vb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/extensions/test/ole/StarBasic_OleClient/oleclient.bas b/extensions/test/ole/StarBasic_OleClient/oleclient.bas index ed0b322a8eef..e640d434d240 100644 --- a/extensions/test/ole/StarBasic_OleClient/oleclient.bas +++ b/extensions/test/ole/StarBasic_OleClient/oleclient.bas @@ -216,7 +216,7 @@ inUnknown2 = inUnknown obj.inoutUnknown(inUnknown2) outUnknown = Nothing obj.inoutUnknown(outUnknown) -inDecimal = CDec("18446744073709551615") 'highest positiv value of unsigne int64 +inDecimal = CDec("18446744073709551615") 'highest positive value of unsigned int64 inDecimal2 = inDecimal obj.inoutDecimal(inDecimal2) outDecimal = 0 @@ -576,7 +576,7 @@ If Not IsNull(outObject) Then Exit Function End If 'Decimal passed by reference -inrefDecimal = CDec("9223372036854775807") 'highest positiv value of int64 +inrefDecimal = CDec("9223372036854775807") 'highest positive value of int64 obj.inrefDecimal(inrefDecimal) outrefDecimal = 0 obj.outDecimal(outrefDecimal) diff --git a/extensions/test/ole/VisualBasic/Module1.vb b/extensions/test/ole/VisualBasic/Module1.vb index 03da7399ffd4..f4acd19170a6 100644 --- a/extensions/test/ole/VisualBasic/Module1.vb +++ b/extensions/test/ole/VisualBasic/Module1.vb @@ -291,7 +291,7 @@ Public Sub Main() retULong = outULong
objOleTest.testinout_methodULong(retLong)
objOleTest.testinout_methodULong(retLong)
- outHyper = CDec("9223372036854775807") 'highest positiv value of int64
+ outHyper = CDec("9223372036854775807") 'highest positive value of int64
retHyper = outHyper
objOleTest.testinout_methodHyper(retHyper)
objOleTest.testinout_methodHyper(retHyper)
|