diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-08-15 14:19:08 +0200 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2018-08-15 19:04:41 +0200 |
commit | 76532719505a3d9b495911ce7f86b8cda8412a00 (patch) | |
tree | bc6cd8b59cf136c5c521aa8dea9e3c5d1865f8fe /sal/qa | |
parent | 9aee1dd5c7a4799fa02f0f64e6f733029c47a21a (diff) |
Fix typo: s/an other/another/g
Change-Id: Iab3302d20fb9b0be4b97331709f83f818a46b2da
Reviewed-on: https://gerrit.libreoffice.org/59100
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'sal/qa')
-rw-r--r-- | sal/qa/rtl/ostring/rtl_str.cxx | 2 | ||||
-rw-r--r-- | sal/qa/rtl/oustring/rtl_ustr.cxx | 2 | ||||
-rw-r--r-- | sal/qa/rtl/random/rtl_random.cxx | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sal/qa/rtl/ostring/rtl_str.cxx b/sal/qa/rtl/ostring/rtl_str.cxx index 80c49b5deac8..94b741caae32 100644 --- a/sal/qa/rtl/ostring/rtl_str.cxx +++ b/sal/qa/rtl/ostring/rtl_str.cxx @@ -261,7 +261,7 @@ namespace rtl_str rtl::OString aStr1 = "Line for a hashCode."; sal_Int32 nHashCode1 = rtl_str_hashCode( aStr1.getStr() ); - rtl::OString aStr2 = "Line for an other hashcode."; + rtl::OString aStr2 = "Line for another hashcode."; sal_Int32 nHashCode2 = rtl_str_hashCode( aStr2.getStr() ); CPPUNIT_ASSERT_MESSAGE("hashcodes must differ.", nHashCode1 != nHashCode2 ); diff --git a/sal/qa/rtl/oustring/rtl_ustr.cxx b/sal/qa/rtl/oustring/rtl_ustr.cxx index 138bad1e8912..0b533a363b53 100644 --- a/sal/qa/rtl/oustring/rtl_ustr.cxx +++ b/sal/qa/rtl/oustring/rtl_ustr.cxx @@ -275,7 +275,7 @@ namespace rtl_ustr // rtl::OString aStr1 = "Line for a hashCode."; // sal_Int32 nHashCode1 = rtl_ustr_hashCode( aStr1.getStr() ); // -// rtl::OString aStr2 = "Line for an other hashcode."; +// rtl::OString aStr2 = "Line for another hashcode."; // sal_Int32 nHashCode2 = rtl_ustr_hashCode( aStr2.getStr() ); // // CPPUNIT_ASSERT_MESSAGE("hashcodes must differ.", nHashCode1 != nHashCode2 ); diff --git a/sal/qa/rtl/random/rtl_random.cxx b/sal/qa/rtl/random/rtl_random.cxx index 1193126d8c2d..1e0eb625d5f5 100644 --- a/sal/qa/rtl/random/rtl_random.cxx +++ b/sal/qa/rtl/random/rtl_random.cxx @@ -44,7 +44,7 @@ public: rtlRandomPool aPool = rtl_random_createPool(); - // LLA: seems to be that an other test is not possible for createPool() + // LLA: seems to be that another test is not possible for createPool() CPPUNIT_ASSERT_MESSAGE("create failed", aPool != nullptr); rtl_random_destroyPool(aPool); @@ -73,7 +73,7 @@ public: { rtlRandomPool aPool = rtl_random_createPool(); - // LLA: seems to be that an other test is not possible for createPool() + // LLA: seems to be that another test is not possible for createPool() CPPUNIT_ASSERT_MESSAGE("create failed", aPool != nullptr); rtl_random_destroyPool(aPool); |