summaryrefslogtreecommitdiff
path: root/sd/source/filter/ppt/propread.cxx
diff options
context:
space:
mode:
authorUrs Fässler <urs@bitzgi.ch>2013-03-01 11:08:16 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-03-01 12:18:54 +0000
commite5a0f81805b63ef720c55d19ac2d792d8df8a7b3 (patch)
treef82f8d419788b54e2def1a5fecab11aca4227f41 /sd/source/filter/ppt/propread.cxx
parent7599237f5940b645182cec4ca8817a8e544963d4 (diff)
translation of German comments in file sd/source/filter/ppt/propread.cxx
Change-Id: I11ae4cd91984745a8c18a50575c7195a5316a211
Diffstat (limited to 'sd/source/filter/ppt/propread.cxx')
-rw-r--r--sd/source/filter/ppt/propread.cxx6
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;