[Libreoffice-commits] .: oox/source
Michael Meeks
mmeeks at kemper.freedesktop.org
Thu Nov 11 02:29:28 PST 2010
oox/source/drawingml/textparagraphproperties.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 57dabc869c92bb82bb262d46d4ed363af5fcd974
Author: Michael Meeks <michael.meeks at novell.com>
Date: Thu Nov 11 10:29:58 2010 +0000
fix type of zero passed as sal_Int32 to template
diff --git a/oox/source/drawingml/textparagraphproperties.cxx b/oox/source/drawingml/textparagraphproperties.cxx
index 84c18ef..59366db 100644
--- a/oox/source/drawingml/textparagraphproperties.cxx
+++ b/oox/source/drawingml/textparagraphproperties.cxx
@@ -429,7 +429,7 @@ void TextParagraphProperties::pushToPropSet( const ::oox::core::XmlFilterBase* p
}
}
if ( noParaLeftMargin )
- aPropSet.setProperty( PROP_ParaLeftMargin, 0 /**noParaLeftMargin*/ );
+ aPropSet.setProperty( PROP_ParaLeftMargin, sal_Int32(0) /**noParaLeftMargin*/ );
if ( noFirstLineIndentation )
aPropSet.setProperty( PROP_ParaFirstLineIndent, *noFirstLineIndentation );
}
More information about the Libreoffice-commits
mailing list