diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-26 22:25:23 +1000 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-05-26 20:47:49 +0200 |
commit | 94844e60fc7d57352333d78f10bd47fae8adf6f5 (patch) | |
tree | ceb2959104dd0ea63043413511f9892ca249026b | |
parent | 87d62a6222932d36c91d7b69240c7bccbf4e46be (diff) |
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 <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r-- | registry/source/regimpl.cxx | 6 |
1 files 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<sal_Char*>(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<sal_Unicode*>(rtl_allocateMemory((sLen / 2) * sizeof(sal_Unicode))); readString(pBuffer+offset, pValue, sLen); |