Kaydet (Commit) 255bb46d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:defaultparams

Change-Id: I52308fced25173f6a4b1c56c0c494e89fb5c1648
üst 561f2410
...@@ -1193,7 +1193,7 @@ Reference < XShape > Shape::renderDiagramToGraphic( XmlFilterBase& rFilterBase ) ...@@ -1193,7 +1193,7 @@ Reference < XShape > Shape::renderDiagramToGraphic( XmlFilterBase& rFilterBase )
Graphic aGraphic; Graphic aGraphic;
GraphicFilter aFilter( false ); GraphicFilter aFilter( false );
if ( aFilter.ImportGraphic( aGraphic, "", mpTempStream, GRFILTER_FORMAT_NOTFOUND, NULL, GraphicFilterImportFlags::NONE, static_cast < Sequence < PropertyValue >* > ( NULL ), NULL ) != GRFILTER_OK ) if ( aFilter.ImportGraphic( aGraphic, "", mpTempStream, GRFILTER_FORMAT_NOTFOUND, NULL, GraphicFilterImportFlags::NONE, static_cast < Sequence < PropertyValue >* > ( NULL ) ) != GRFILTER_OK )
{ {
SAL_WARN( "oox.drawingml", OSL_THIS_FUNC SAL_WARN( "oox.drawingml", OSL_THIS_FUNC
<< "Unable to import rendered stream into graphic object" ); << "Unable to import rendered stream into graphic object" );
......
...@@ -276,7 +276,7 @@ namespace oox { namespace ppt { ...@@ -276,7 +276,7 @@ namespace oox { namespace ppt {
{ {
const OUString aMediaTime( msCommand.copy( 9, msCommand.getLength() - 10 ) ); const OUString aMediaTime( msCommand.copy( 9, msCommand.getLength() - 10 ) );
rtl_math_ConversionStatus eStatus; rtl_math_ConversionStatus eStatus;
double fMediaTime = ::rtl::math::stringToDouble( aMediaTime, (sal_Unicode)('.'), (sal_Unicode)(','), &eStatus, NULL ); double fMediaTime = ::rtl::math::stringToDouble( aMediaTime, (sal_Unicode)('.'), (sal_Unicode)(','), &eStatus );
if( eStatus == rtl_math_ConversionStatus_Ok ) if( eStatus == rtl_math_ConversionStatus_Ok )
{ {
aParamValue.Name = "MediaTime"; aParamValue.Name = "MediaTime";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment