diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-26 17:40:36 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-26 17:40:36 +0100 |
commit | 3cc25be9cd42307b00c29f2862ffab634d05d824 (patch) | |
tree | 31e84736b8f07e3b45a408f045889d863b147827 /winaccessibility | |
parent | d8db8ea918faf1e1ea100de20d156725d9d51fc9 (diff) |
Replace deprecated OUString::valueOf -> OUString::number
Change-Id: Ia9c5d9ce424f810b31ccc8ec939e1ced301329f7
Diffstat (limited to 'winaccessibility')
-rw-r--r-- | winaccessibility/source/service/AccObject.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winaccessibility/source/service/AccObject.cxx b/winaccessibility/source/service/AccObject.cxx index 124d29b8f4f9..4943d34c04aa 100644 --- a/winaccessibility/source/service/AccObject.cxx +++ b/winaccessibility/source/service/AccObject.cxx @@ -430,7 +430,7 @@ void AccObject::SetValue( Any pAny ) sal_uInt16 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 ) double val; if (pAny >>= val) { - strValue=::rtl::OUString::valueOf(val); + strValue=::rtl::OUString::number(val); } } else if(pAny.getValueType() == getCppuType( (sal_Int32 *)0 ) ) @@ -468,7 +468,7 @@ void AccObject::SetValue( Any pAny ) sal_Int32 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 ) ) |