diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-11 12:13:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-11 12:13:52 +0100 |
commit | d8628e87e989668ade0045cfd219912c1579b27b (patch) | |
tree | 9809be1ae4125fe6ca39f0ee5773c79964d311c4 /oox | |
parent | 0ccf0b968d71c56fef9a848d541c42223db8f8b8 (diff) |
we love you 32bit sal_Int32 as long
Change-Id: I006bceae3d05d2c014beae2127ad8a57c9bee353
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/textparagraphproperties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/textparagraphproperties.cxx b/oox/source/drawingml/textparagraphproperties.cxx index 350d09affd68..edf13fbf9b9e 100644 --- a/oox/source/drawingml/textparagraphproperties.cxx +++ b/oox/source/drawingml/textparagraphproperties.cxx @@ -425,7 +425,7 @@ void TextParagraphProperties::pushToPropSet( const ::oox::core::XmlFilterBase* p { // Force Paragraph property as zero - impress seems to use the value from previous // (non) bullet line if not set to zero explicitly :( - aPropSet.setProperty( PROP_ParaFirstLineIndent, 0 ); + aPropSet.setProperty( PROP_ParaFirstLineIndent, static_cast< sal_Int32>(0) ); rioBulletMap[ PROP_FirstLineOffset ] <<= static_cast< sal_Int32 >( *noFirstLineIndentation ); noFirstLineIndentation = boost::none; } |