diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2018-01-30 12:05:51 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-01-30 12:16:37 +0100 |
commit | 8310642c6c404ea501b8be5ae4d12860e1562ac9 (patch) | |
tree | 881e305318d96431142107d91845dda412ef982d /sal | |
parent | b4f440092b852a7c66f4acdd7e9b0c8e23e212ef (diff) |
Typ-o negativ
Fixed some typos and translated a couple of German words
Change-Id: I24ae28dd537ba283a9480413659f85bd6711acad
Reviewed-on: https://gerrit.libreoffice.org/48892
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/rtl/ostring/rtl_OString2.cxx | 2 | ||||
-rw-r--r-- | sal/qa/rtl/oustring/rtl_OUString2.cxx | 4 | ||||
-rw-r--r-- | sal/rtl/strtmpl.cxx | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sal/qa/rtl/ostring/rtl_OString2.cxx b/sal/qa/rtl/ostring/rtl_OString2.cxx index 63efbf1c9839..1e22a96b5e48 100644 --- a/sal/qa/rtl/ostring/rtl_OString2.cxx +++ b/sal/qa/rtl/ostring/rtl_OString2.cxx @@ -215,7 +215,7 @@ public: { toDouble_test_impl(_sValue); - // test also the negativ part. + // test also the negative part. rtl::OString sNegativValue("-"); sNegativValue += _sValue; toDouble_test_impl(sNegativValue); diff --git a/sal/qa/rtl/oustring/rtl_OUString2.cxx b/sal/qa/rtl/oustring/rtl_OUString2.cxx index 385d49b3c537..426834b88f5f 100644 --- a/sal/qa/rtl/oustring/rtl_OUString2.cxx +++ b/sal/qa/rtl/oustring/rtl_OUString2.cxx @@ -264,7 +264,7 @@ public: { toDouble_test_impl(_sValue); - // test also the negativ part. + // test also the negative part. rtl::OString sNegativValue("-"); sNegativValue += _sValue; toDouble_test_impl(sNegativValue); @@ -399,7 +399,7 @@ public: { toFloat_test_impl(_sValue); - // test also the negativ part. + // test also the negative part. rtl::OString sNegativValue("-"); sNegativValue += _sValue; toFloat_test_impl(sNegativValue); diff --git a/sal/rtl/strtmpl.cxx b/sal/rtl/strtmpl.cxx index 929e5ce5c60e..b477e50216c0 100644 --- a/sal/rtl/strtmpl.cxx +++ b/sal/rtl/strtmpl.cxx @@ -827,7 +827,7 @@ sal_Int32 SAL_CALL IMPL_RTL_STRNAME( valueOfInt32 )( IMPL_RTL_STRCODE* pStr, if ( (nRadix < RTL_STR_MIN_RADIX) || (nRadix > RTL_STR_MAX_RADIX) ) nRadix = 10; - /* is value negativ */ + /* is value negative */ if ( n < 0 ) { *pStr = '-'; @@ -882,7 +882,7 @@ sal_Int32 SAL_CALL IMPL_RTL_STRNAME( valueOfInt64 )( IMPL_RTL_STRCODE* pStr, if ( (nRadix < RTL_STR_MIN_RADIX) || (nRadix > RTL_STR_MAX_RADIX) ) nRadix = 10; - /* is value negativ */ + /* is value negative */ if ( n < 0 ) { *pStr = '-'; @@ -1567,7 +1567,7 @@ void SAL_CALL IMPL_RTL_STRINGNAME( newReplaceStrAt )( IMPL_RTL_STRINGDATA** ppTh return; } - /* negativ index? */ + /* negative index? */ if ( nIndex < 0 ) { nCount -= nIndex; |