summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-10-11 12:13:52 +0100
committerAndras Timar <atimar@suse.com>2012-10-13 12:24:54 +0200
commit2d55646fe058929bca468757f587fc235de6dbdf (patch)
tree5da62831f2735c51c5af154e78650e8edca9f16e /oox
parentb3fef69f7047238f96b91ccc8c4ad0a1f34b9bb3 (diff)
we love you 32bit sal_Int32 as long
Change-Id: I006bceae3d05d2c014beae2127ad8a57c9bee353
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/textparagraphproperties.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/textparagraphproperties.cxx b/oox/source/drawingml/textparagraphproperties.cxx
index e3977af53ab6..87091c15621d 100644
--- a/oox/source/drawingml/textparagraphproperties.cxx
+++ b/oox/source/drawingml/textparagraphproperties.cxx
@@ -434,7 +434,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;
}