From 94844e60fc7d57352333d78f10bd47fae8adf6f5 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Fri, 26 May 2017 22:25:23 +1000 Subject: tdf#39468: translate German to English in registry's regimpl.cxx Change-Id: Ibda59217728c9c959c4648d73005770d27644b77 Reviewed-on: https://gerrit.libreoffice.org/38069 Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- registry/source/regimpl.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/registry/source/regimpl.cxx b/registry/source/regimpl.cxx index aaf9f8f4f164..5499e7b5c7da 100644 --- a/registry/source/regimpl.cxx +++ b/registry/source/regimpl.cxx @@ -1526,7 +1526,7 @@ RegError ORegistry::dumpValue(const OUString& sPath, const OUString& sName, sal_ stdout, "%lu = %ld\n", sal::static_int_cast< unsigned long >(i), sal::static_int_cast< long >(longValue)); - offset += 4; // 4 Bytes fuer sal_Int32 + offset += 4; // 4 Bytes for sal_Int32 } } break; @@ -1551,7 +1551,7 @@ RegError ORegistry::dumpValue(const OUString& sPath, const OUString& sName, sal_ { readUINT32(pBuffer+offset, sLen); - offset += 4; // 4 Bytes (sal_uInt32) fuer die Groesse des strings in Bytes + offset += 4; // 4 bytes (sal_uInt32) for the string size sal_Char *pValue = static_cast(rtl_allocateMemory(sLen)); readUtf8(pBuffer+offset, pValue, sLen); @@ -1589,7 +1589,7 @@ RegError ORegistry::dumpValue(const OUString& sPath, const OUString& sName, sal_ { readUINT32(pBuffer+offset, sLen); - offset += 4; // 4 Bytes (sal_uInt32) fuer die Groesse des strings in Bytes + offset += 4; // 4 bytes (sal_uInt32) for the string size sal_Unicode *pValue = static_cast(rtl_allocateMemory((sLen / 2) * sizeof(sal_Unicode))); readString(pBuffer+offset, pValue, sLen); -- cgit v1.2.3