From b36d555440b86d8293b188e4d99ec8682a2139a5 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 26 Feb 2012 20:45:18 +0000 Subject: drop UniString::CreateFromInt64 --- svx/source/stbctrls/pszctrl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svx/source/stbctrls') diff --git a/svx/source/stbctrls/pszctrl.cxx b/svx/source/stbctrls/pszctrl.cxx index 9c8a3e3bb5b9..1356572b58b2 100644 --- a/svx/source/stbctrls/pszctrl.cxx +++ b/svx/source/stbctrls/pszctrl.cxx @@ -84,7 +84,7 @@ String SvxPosSizeStatusBarControl::GetMetricStr_Impl( long nVal ) if ( nConvVal < 0 && ( nConvVal / 100 == 0 ) ) sMetric += '-'; - sMetric += String::CreateFromInt64( nConvVal / 100 ); + sMetric += rtl::OUString::valueOf(nConvVal / 100); if( FUNIT_NONE != eOutUnit ) { @@ -95,7 +95,7 @@ String SvxPosSizeStatusBarControl::GetMetricStr_Impl( long nVal ) nFract *= -1; if ( nFract < 10 ) sMetric += '0'; - sMetric += String::CreateFromInt64( nFract ); + sMetric += rtl::OUString::valueOf(nFract); } return sMetric; -- cgit