ooxml10: oox-fix-list-style-apply.diff from ooo-build
This commit is contained in:
parent
d9889b7620
commit
5223f5f223
1 changed files with 3 additions and 1 deletions
|
@ -155,8 +155,10 @@ void PPTShape::addShape(
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// use style from master slide for placeholders only, otherwise use slide's style, which might be the default style from presentation
|
||||
if ( !aMasterTextListStyle.get() )
|
||||
aMasterTextListStyle = rSlidePersist.getMasterPersist().get() ? rSlidePersist.getMasterPersist()->getOtherTextStyle() : rSlidePersist.getOtherTextStyle();
|
||||
aMasterTextListStyle = ( mnSubType && rSlidePersist.getMasterPersist().get() ) ? rSlidePersist.getMasterPersist()->getOtherTextStyle() : rSlidePersist.getOtherTextStyle();
|
||||
setMasterTextListStyle( aMasterTextListStyle );
|
||||
|
||||
Reference< XShape > xShape( createAndInsert( rFilterBase, sServiceName, pTheme, rxShapes, pShapeRect, bClearText ) );
|
||||
|
|
Loading…
Reference in a new issue