diff options
author | Johnny_M <klasse@partyheld.de> | 2017-05-13 15:23:33 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-05-15 15:27:52 +0200 |
commit | 2c3f58eff2bac36e39d81c1f8facce5ed6a1ffd2 (patch) | |
tree | 2cf0de7634391266bab6ca7724a449d83f54d768 /comphelper/source/streaming | |
parent | 035fec9229c5b7fc42d203c1b31e26a1b187ab97 (diff) |
Translate German comments and debug strings (leftovers in dirs a... to c...)
Translates all (leftovers) found using a custom regex, in directories not
shown by /bin/find-german-comments and beginning with "a" to "c".
Change-Id: I3b0152ee78ad80a29d714cbd98bf888f31be4763
Reviewed-on: https://gerrit.libreoffice.org/37573
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'comphelper/source/streaming')
-rw-r--r-- | comphelper/source/streaming/basicio.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/streaming/oslfile2streamwrap.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/streaming/basicio.cxx b/comphelper/source/streaming/basicio.cxx index 0caf2ab683fa..98d8174f1d63 100644 --- a/comphelper/source/streaming/basicio.cxx +++ b/comphelper/source/streaming/basicio.cxx @@ -53,7 +53,7 @@ const css::uno::Reference<css::io::XObjectInputStream>& operator >> ( const css::uno::Reference<css::io::XObjectInputStream>& _rxInStream, css::awt::FontDescriptor& _rFont) { - // schreiben des Fontdescriptors + // writing the FontDescriptor _rFont.Name = _rxInStream->readUTF(); _rFont.Height = _rxInStream->readShort(); _rFont.Width = _rxInStream->readShort(); diff --git a/comphelper/source/streaming/oslfile2streamwrap.cxx b/comphelper/source/streaming/oslfile2streamwrap.cxx index 1a9c1200db5c..888e0134f799 100644 --- a/comphelper/source/streaming/oslfile2streamwrap.cxx +++ b/comphelper/source/streaming/oslfile2streamwrap.cxx @@ -58,7 +58,7 @@ sal_Int32 SAL_CALL OSLInputStreamWrapper::readBytes(css::uno::Sequence< sal_Int8 if (eError != FileBase::E_None) throw css::io::BufferSizeExceededException(OUString(),static_cast<css::uno::XWeak*>(this)); - // Wenn gelesene Zeichen < MaxLength, css::uno::Sequence anpassen + // If the read character < MaxLength, adjust css::uno::Sequence if (nRead < (sal_uInt32)nBytesToRead) aData.realloc( sal::static_int_cast< sal_Int32 >(nRead) ); |