diff options
author | Urs Fässler <urs@bitzgi.ch> | 2013-03-01 11:08:16 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2013-03-01 12:18:54 +0000 |
commit | e5a0f81805b63ef720c55d19ac2d792d8df8a7b3 (patch) | |
tree | f82f8d419788b54e2def1a5fecab11aca4227f41 /sd/source | |
parent | 7599237f5940b645182cec4ca8817a8e544963d4 (diff) |
translation of German comments in file sd/source/filter/ppt/propread.cxx
Change-Id: I11ae4cd91984745a8c18a50575c7195a5316a211
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/filter/ppt/propread.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/filter/ppt/propread.cxx b/sd/source/filter/ppt/propread.cxx index 3b053f4f4989..38e2d7a87e3f 100644 --- a/sd/source/filter/ppt/propread.cxx +++ b/sd/source/filter/ppt/propread.cxx @@ -235,14 +235,14 @@ sal_Bool Section::GetProperty( sal_uInt32 nId, PropItem& rPropItem ) void Section::AddProperty( sal_uInt32 nId, const sal_uInt8* pBuf, sal_uInt32 nBufSize ) { - // kleiner id check + // just a simple id check if ( !nId ) return; if ( nId == 0xffffffff ) nId = 0; - // keine doppelten PropId's zulassen, sortieren + // do not allow same PropId's, sort boost::ptr_vector<PropEntry>::iterator iter; for ( iter = maEntries.begin(); iter != maEntries.end(); ++iter ) { @@ -333,7 +333,7 @@ void Section::Read( SvStorageStream *pStrm ) *pStrm >> nPropId >> nPropOfs; nCurrent = pStrm->Tell(); pStrm->Seek( nPropOfs + nSecOfs ); - if ( nPropId ) // dictionary wird nicht eingelesen + if ( nPropId ) // do not read dictionary { *pStrm >> nPropType; |