diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-20 11:45:59 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-20 11:45:59 +0200 |
commit | 255bb46d14343c4aa19e312d735d7fda49e46102 (patch) | |
tree | 4dff6296c665676bd2cdcb361dbb19779e7efd0d /oox/source/ppt | |
parent | 561f2410a7e8c93cddba6983db40f1100e6945b1 (diff) |
loplugin:defaultparams
Change-Id: I52308fced25173f6a4b1c56c0c494e89fb5c1648
Diffstat (limited to 'oox/source/ppt')
-rw-r--r-- | oox/source/ppt/timenodelistcontext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ppt/timenodelistcontext.cxx b/oox/source/ppt/timenodelistcontext.cxx index 4efd9fedc7ee..0a6035d8ccf6 100644 --- a/oox/source/ppt/timenodelistcontext.cxx +++ b/oox/source/ppt/timenodelistcontext.cxx @@ -276,7 +276,7 @@ namespace oox { namespace ppt { { const OUString aMediaTime( msCommand.copy( 9, msCommand.getLength() - 10 ) ); 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 ) { aParamValue.Name = "MediaTime"; |