summaryrefslogtreecommitdiffstats
path: root/sd/source/filter/eppt
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-03-01 09:31:54 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-03-01 10:43:56 +0000
commit2eeef79b78242a89ef6901ba67b30f178d59027f (patch)
treeb85607c7b7093f5055ffd069e3bb2603fc5ff3b7 /sd/source/filter/eppt
parentnow restore and use reduced UnlockFile and UnlockRange impls (diff)
downloadcore-2eeef79b78242a89ef6901ba67b30f178d59027f.tar.gz
core-2eeef79b78242a89ef6901ba67b30f178d59027f.zip
callcatcher: update list
Diffstat (limited to 'sd/source/filter/eppt')
-rw-r--r--sd/source/filter/eppt/pptx-text.cxx12
-rw-r--r--sd/source/filter/eppt/text.hxx2
2 files changed, 0 insertions, 14 deletions
diff --git a/sd/source/filter/eppt/pptx-text.cxx b/sd/source/filter/eppt/pptx-text.cxx
index b54acde52707..38485286f9aa 100644
--- a/sd/source/filter/eppt/pptx-text.cxx
+++ b/sd/source/filter/eppt/pptx-text.cxx
@@ -1297,18 +1297,6 @@ TextObj::~TextObj()
delete mpImplTextObj;
}
-void TextObj::Write( SvStream* pStrm )
-{
- sal_uInt32 nSize, nPos = pStrm->Tell();
- *pStrm << (sal_uInt32)( EPP_TextCharsAtom << 16 ) << (sal_uInt32)0;
- for ( void* pPtr = First(); pPtr; pPtr = Next() )
- ((ParagraphObj*)pPtr)->Write( pStrm );
- nSize = pStrm->Tell() - nPos;
- pStrm->SeekRel( - ( (sal_Int32)nSize - 4 ) );
- *pStrm << (sal_uInt32)( nSize - 8 );
- pStrm->SeekRel( nSize - 8 );
-}
-
void TextObj::ImplCalculateTextPositions()
{
mpImplTextObj->mnTextSize = 0;
diff --git a/sd/source/filter/eppt/text.hxx b/sd/source/filter/eppt/text.hxx
index 58ddca9eeaee..aadd938ea13a 100644
--- a/sd/source/filter/eppt/text.hxx
+++ b/sd/source/filter/eppt/text.hxx
@@ -252,8 +252,6 @@ class TextObj
TextObj( const TextObj& rTextObj );
~TextObj();
- void Write( SvStream* pStrm );
-
ParagraphObj* First(){ return (ParagraphObj*)mpImplTextObj->mpList->First(); };
ParagraphObj* Next(){ return(ParagraphObj*)mpImplTextObj->mpList->Next(); };
sal_uInt32 Count() const { return mpImplTextObj->mnTextSize; };