diff options
author | Muthu Subramanian <sumuthu@suse.com> | 2012-01-24 13:02:03 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@suse.com> | 2012-01-24 13:02:03 +0530 |
commit | a21c7f835bd7034614fa8ac606fd60a0cbeef1ec (patch) | |
tree | 96e740ec33aba14b77353e22279621168577728c /oox | |
parent | 29ac03994484cb65725ec697cb7615a31b117b58 (diff) |
Fix for a probable crash. (code review)
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/textparagraph.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/textparagraph.cxx b/oox/source/drawingml/textparagraph.cxx index 964932fd9c58..689ab90b7f50 100644 --- a/oox/source/drawingml/textparagraph.cxx +++ b/oox/source/drawingml/textparagraph.cxx @@ -113,8 +113,8 @@ void TextParagraph::insertAt( { pTextParagraphStyle->pushToPropSet( &rFilterBase, xProps, aioBulletList, NULL, sal_False, fCharacterSize ); fCharacterSize = pTextParagraphStyle->getCharHeightPoints( fCharacterSize ); + maProperties.pushToPropSet( &rFilterBase, xProps, aioBulletList, &pTextParagraphStyle->getBulletList(), sal_True, fCharacterSize ); } - maProperties.pushToPropSet( &rFilterBase, xProps, aioBulletList, &pTextParagraphStyle->getBulletList(), sal_True, fCharacterSize ); // empty paragraphs do not have bullets in ppt if ( !nParagraphSize ) |