summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsj <sj@openoffice.org>2010-05-18 17:19:53 +0200
committersj <sj@openoffice.org>2010-05-18 17:19:53 +0200
commit38c1d35d15a0adc980c2355ff97ce327645cd954 (patch)
tree7f3b5a2abacc87fd32b9a942a7e47069209b952d
parent091ac9e41ac44380da022679ab98182af3f8b958 (diff)
sdk321: #i111521# ppt export, fixed problem with graphical bullets
Notes
split repo tag: impress_ooo/DEV300_m80
-rw-r--r--sd/source/filter/eppt/epptso.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx
index f07245d1ff31..c9d083db86d9 100644
--- a/sd/source/filter/eppt/epptso.cxx
+++ b/sd/source/filter/eppt/epptso.cxx
@@ -5358,6 +5358,12 @@ void PPTWriter::ImplWritePage( const PHLayout& rLayout, EscherSolverContainer& a
pClientTextBox->Write( pOut->GetData(), pOut->Tell() );
delete pOut, aTextRule.pOut = NULL;
}
+ if ( aExtBu.Tell() )
+ {
+ if ( !pClientData )
+ pClientData = new SvMemoryStream( 0x200, 0x200 );
+ ImplProgTagContainer( pClientData, &aExtBu );
+ }
}
}
}