Kaydet (Commit) 3cc25be9 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Replace deprecated OUString::valueOf -> OUString::number

Change-Id: Ia9c5d9ce424f810b31ccc8ec939e1ced301329f7
üst d8db8ea9
...@@ -430,7 +430,7 @@ void AccObject::SetValue( Any pAny ) ...@@ -430,7 +430,7 @@ void AccObject::SetValue( Any pAny )
sal_uInt16 val; sal_uInt16 val;
if (pAny >>= val) if (pAny >>= val)
{ {
strValue=::rtl::OUString::valueOf((sal_Int32)val); strValue=::rtl::OUString::number(val);
} }
} }
...@@ -460,7 +460,7 @@ void AccObject::SetValue( Any pAny ) ...@@ -460,7 +460,7 @@ void AccObject::SetValue( Any pAny )
double val; double val;
if (pAny >>= val) if (pAny >>= val)
{ {
strValue=::rtl::OUString::valueOf(val); strValue=::rtl::OUString::number(val);
} }
} }
else if(pAny.getValueType() == getCppuType( (sal_Int32 *)0 ) ) else if(pAny.getValueType() == getCppuType( (sal_Int32 *)0 ) )
...@@ -468,7 +468,7 @@ void AccObject::SetValue( Any pAny ) ...@@ -468,7 +468,7 @@ void AccObject::SetValue( Any pAny )
sal_Int32 val; sal_Int32 val;
if (pAny >>= val) if (pAny >>= val)
{ {
strValue=::rtl::OUString::valueOf(val); strValue=::rtl::OUString::number(val);
} }
} }
else if (pAny.getValueType() == getCppuType( (com::sun::star::accessibility::TextSegment *)0 ) ) else if (pAny.getValueType() == getCppuType( (com::sun::star::accessibility::TextSegment *)0 ) )
......
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