diff options
author | Philipp Weissenbacher <p.weissenbacher@gmail.com> | 2013-03-04 15:49:00 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-04 16:54:45 +0000 |
commit | de45e004399ff3634b89711990607909a66e3541 (patch) | |
tree | 7ad551fd5f661cf3a91f0c65afe2a1585a1f0307 /tools | |
parent | 900d29452ea07db7ed3e9731d907d57da26824fa (diff) |
Translate German comments
Change-Id: I3c4b8fa5b80bdd4a38dc9ea15ad805e9430a6e68
Reviewed-on: https://gerrit.libreoffice.org/2540
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/ref/pstm.cxx | 8 | ||||
-rw-r--r-- | tools/unx/source/dll/toolsdll.cxx | 10 |
2 files changed, 7 insertions, 11 deletions
diff --git a/tools/source/ref/pstm.cxx b/tools/source/ref/pstm.cxx index 60f8c869841e..ee5870c323d9 100644 --- a/tools/source/ref/pstm.cxx +++ b/tools/source/ref/pstm.cxx @@ -370,11 +370,11 @@ sal_uInt32 SvPersistStream::WriteDummyLen() sal_uInt32 nPos = Tell(); #endif sal_uInt32 n0 = 0; - *this << n0; // wegen Sun sp + *this << n0; // Because of Sun sp // Don't assert on stream error DBG_ASSERT( GetError() != SVSTREAM_OK || (sizeof( sal_uInt32 ) == Tell() -nPos), - "keine 4-Byte fuer Langenangabe" ); + "No 4 byte as length parameter" ); return Tell(); } @@ -563,7 +563,7 @@ sal_uInt32 SvPersistStream::ReadObj sal_uInt32 nId = 0; sal_uInt16 nClassId; - rpObj = NULL; // specification: 0 in case of error + rpObj = NULL; // specification: 0 in case of error ReadId( *this, nHdr, nId, nClassId ); // get version nummer through masking @@ -699,7 +699,7 @@ SvStream& operator >> rThis.SetStream( &rStm ); sal_uInt8 nVers; - rThis >> nVers; // Version + rThis >> nVers; // Version if( 0 == nVers ) { sal_uInt32 nCount = 0; diff --git a/tools/unx/source/dll/toolsdll.cxx b/tools/unx/source/dll/toolsdll.cxx index 9766bf4012f2..414c7d23ca44 100644 --- a/tools/unx/source/dll/toolsdll.cxx +++ b/tools/unx/source/dll/toolsdll.cxx @@ -21,13 +21,9 @@ static void* aAppData[SHL_COUNT]; -/*************************************************************************** -|* -|* GetAppData() -|* -|* Beschreibung Daten fuer andere Libs abfragen -|* -***************************************************************************/ +/* + * Query data for other libraries + */ void** GetAppData( sal_uInt16 nSharedLib ) { |