summaryrefslogtreecommitdiff
path: root/sd/source/filter/ppt/propread.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 23:45:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-26 06:53:03 -0600
commit2ef9df8aee696993d9eb235fd36caa4cbcfd3624 (patch)
tree7b9a351a3362f45a909299c93192bd11a2fd0c4e /sd/source/filter/ppt/propread.cxx
parent7e92d9881f039899262882633712ec0a3de01474 (diff)
Remove visual noise from sd
Change-Id: I0957cabd66ddc4e25c7e6ff54ec2a555eda0792c Reviewed-on: https://gerrit.libreoffice.org/8306 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/filter/ppt/propread.cxx')
-rw-r--r--sd/source/filter/ppt/propread.cxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/sd/source/filter/ppt/propread.cxx b/sd/source/filter/ppt/propread.cxx
index 894efb4b4c21..955588e00ede 100644
--- a/sd/source/filter/ppt/propread.cxx
+++ b/sd/source/filter/ppt/propread.cxx
@@ -53,7 +53,7 @@ PropEntry& PropEntry::operator=(const PropEntry& rPropEntry)
return *this;
}
-// -----------------------------------------------------------------------
+
void PropItem::Clear()
{
@@ -61,7 +61,7 @@ void PropItem::Clear()
delete[] (sal_uInt8*)SwitchBuffer();
}
-// -----------------------------------------------------------------------
+
static sal_Int32 lcl_getMaxSafeStrLen(sal_uInt32 nSize)
{
@@ -173,7 +173,7 @@ sal_Bool PropItem::Read( OUString& rString, sal_uInt32 nStringType, sal_Bool bAl
return bRetValue;
}
-// -----------------------------------------------------------------------
+
PropItem& PropItem::operator=( PropItem& rPropItem )
{
@@ -191,7 +191,7 @@ PropItem& PropItem::operator=( PropItem& rPropItem )
return *this;
}
-// -----------------------------------------------------------------------
+
Section::Section( const Section& rSection )
: mnTextEnc(rSection.mnTextEnc),
@@ -201,7 +201,7 @@ Section::Section( const Section& rSection )
aFMTID[ i ] = rSection.aFMTID[ i ];
}
-// -----------------------------------------------------------------------
+
Section::Section( const sal_uInt8* pFMTID )
{
@@ -210,7 +210,7 @@ Section::Section( const sal_uInt8* pFMTID )
aFMTID[ i ] = pFMTID[ i ];
}
-// -----------------------------------------------------------------------
+
sal_Bool Section::GetProperty( sal_uInt32 nId, PropItem& rPropItem )
{
@@ -235,7 +235,7 @@ sal_Bool Section::GetProperty( sal_uInt32 nId, PropItem& rPropItem )
return sal_False;
}
-// -----------------------------------------------------------------------
+
void Section::AddProperty( sal_uInt32 nId, const sal_uInt8* pBuf, sal_uInt32 nBufSize )
{
@@ -262,7 +262,7 @@ void Section::AddProperty( sal_uInt32 nId, const sal_uInt8* pBuf, sal_uInt32 nBu
maEntries.push_back( new PropEntry( nId, pBuf, nBufSize, mnTextEnc ) );
}
-// -----------------------------------------------------------------------
+
sal_Bool Section::GetDictionary( Dictionary& rDict )
{
@@ -319,7 +319,7 @@ sal_Bool Section::GetDictionary( Dictionary& rDict )
return bRetValue;
}
-// -----------------------------------------------------------------------
+
void Section::Read( SvStorageStream *pStrm )
{
@@ -507,7 +507,7 @@ void Section::Read( SvStorageStream *pStrm )
pStrm->Seek( nSecOfs + nSecSize );
}
-// -----------------------------------------------------------------------
+
Section& Section::operator=( const Section& rSection )
{
@@ -520,7 +520,7 @@ Section& Section::operator=( const Section& rSection )
return *this;
}
-// -----------------------------------------------------------------------
+
PropRead::PropRead( SvStorage& rStorage, const OUString& rName ) :
mbStatus ( sal_False ),
@@ -541,14 +541,14 @@ PropRead::PropRead( SvStorage& rStorage, const OUString& rName ) :
}
}
-// -----------------------------------------------------------------------
+
void PropRead::AddSection( Section& rSection )
{
maSections.push_back( new Section( rSection ) );
}
-// -----------------------------------------------------------------------
+
const Section* PropRead::GetSection( const sal_uInt8* pFMTID )
{
@@ -561,7 +561,7 @@ const Section* PropRead::GetSection( const sal_uInt8* pFMTID )
return NULL;
}
-// -----------------------------------------------------------------------
+
void PropRead::Read()
{
@@ -598,7 +598,7 @@ void PropRead::Read()
}
}
-// -----------------------------------------------------------------------
+
PropRead& PropRead::operator=( const PropRead& rPropRead )
{