diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 17:55:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 18:26:58 +0200 |
commit | 2ee486814b8a3cac035a2538646b6a9988bd6bb0 (patch) | |
tree | b6405e8c534e708c48a69f7ed726840ed3d3c83c /oox | |
parent | 7e6aa4e2f8aef4c62b22d45f9447796f540b603a (diff) |
loplugin:salunicodeliteral: oox
Change-Id: I392f52f0371befc92cb5ddd51ec68bce07b689cf
Diffstat (limited to 'oox')
-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 e97a8f148b84..6cb0d96bcbda 100644 --- a/oox/source/ppt/timenodelistcontext.cxx +++ b/oox/source/ppt/timenodelistcontext.cxx @@ -273,7 +273,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 ); + double fMediaTime = ::rtl::math::stringToDouble( aMediaTime, u'.', u',', &eStatus ); if( eStatus == rtl_math_ConversionStatus_Ok ) { aParamValue.Name = "MediaTime"; |