From 0d060112422484abab7ddeb23f6595ca5a553e32 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Fri, 30 May 2008 05:48:19 +0000 Subject: [PATCH] INTEGRATION: CWS sjfixes05 (1.62.26); FILE MERGED 2008/05/22 19:03:46 sj 1.62.26.1: fixed export problem if proportional linespacing is below 100 --- sd/source/filter/eppt/eppt.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx index 97be2271a6b1..28e8d25f51a1 100644 --- a/sd/source/filter/eppt/eppt.cxx +++ b/sd/source/filter/eppt/eppt.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: eppt.cxx,v $ - * $Revision: 1.62 $ + * $Revision: 1.63 $ * * This file is part of OpenOffice.org. * @@ -612,7 +612,7 @@ sal_Bool PPTWriter::ImplCreateDocument() SvMemoryStream aExtBu( 0x200, 0x200 ); if ( !mbEmptyPresObj ) ImplGetText(); - ImplWriteTextStyleAtom( *mpStrm, nTextType, nPObjects, pRule, aExtBu ); + ImplWriteTextStyleAtom( *mpStrm, nTextType, nPObjects, pRule, aExtBu, NULL ); ImplWriteExtParaHeader( aExtBu, nPObjects++, nTextType, i + 0x100 ); maTextRuleList.Insert( (void*)pRule, LIST_APPEND ); if ( rLayout.bSecOutlinerPossible ) @@ -626,7 +626,7 @@ sal_Bool PPTWriter::ImplCreateDocument() SvMemoryStream aTmpStrm( 0x200, 0x200 ); if ( !mbEmptyPresObj ) ImplGetText(); - ImplWriteTextStyleAtom( *mpStrm, nTextType, nPObjects, pTempRule, aTmpStrm ); + ImplWriteTextStyleAtom( *mpStrm, nTextType, nPObjects, pTempRule, aTmpStrm, NULL ); ImplWriteExtParaHeader( aTmpStrm, nPObjects++, nTextType, i + 0x100 ); maTextRuleList.Insert( (void*)pTempRule, LIST_APPEND ); } @@ -644,7 +644,7 @@ sal_Bool PPTWriter::ImplCreateDocument() SvMemoryStream aExtBu( 0x200, 0x200 ); if ( !mbEmptyPresObj ) ImplGetText(); - ImplWriteTextStyleAtom( *mpStrm, EPP_TEXTTYPE_Title, nPObjects, pRule, aExtBu ); + ImplWriteTextStyleAtom( *mpStrm, EPP_TEXTTYPE_Title, nPObjects, pRule, aExtBu, NULL ); ImplWriteExtParaHeader( aExtBu, nPObjects++, EPP_TEXTTYPE_Title, i + 0x100 ); maTextRuleList.Insert( (void*)pRule, LIST_APPEND ); }