Kaydet (Commit) 643e9001 authored tarafından Eike Rathke's avatar Eike Rathke

Do not cast sal_Unicode separator to sal_Char

... living in an ASCII world?

Change-Id: I82912924420766734573a10b2e110fef6fcadd1c
Reviewed-on: https://gerrit.libreoffice.org/43343Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarEike Rathke <erack@redhat.com>
üst 51b02003
...@@ -64,7 +64,7 @@ namespace dbtools ...@@ -64,7 +64,7 @@ namespace dbtools
sal_Unicode nReturn( _nFallback ); sal_Unicode nReturn( _nFallback );
if ( !_rSeparator.isEmpty() ) if ( !_rSeparator.isEmpty() )
nReturn = static_cast< sal_Char >( _rSeparator[0] ); nReturn = _rSeparator[0];
return nReturn; return nReturn;
} }
......
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