diff options
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/ucbhelper/tempfile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx index 449355687825..cf16a4b74186 100644 --- a/unotools/source/ucbhelper/tempfile.cxx +++ b/unotools/source/ucbhelper/tempfile.cxx @@ -209,7 +209,7 @@ void CreateTempName_Impl( String& rName, sal_Bool bKeep, sal_Bool bDir = sal_Tru { u %= nMax; String aTmp( aName ); - aTmp += String::CreateFromInt64( static_cast<sal_Int64>(u), nRadix ); + aTmp += rtl::OUString::valueOf(static_cast<sal_Int64>(u), nRadix); aTmp += String::CreateFromAscii( ".tmp" ); if ( bDir ) |