summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-08-21 15:07:31 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-08-21 15:10:35 +0200
commit64b993e046f23baaacaff1572b7d2a816588b5ef (patch)
tree237dce36a1d4787d168a0520839f6aab22500487 /configmgr
parent75f41baab6ce75786a91fe461835ee16a23ec18e (diff)
finish deprecation of O(U)String::valueOf()
Compiler plugin to replace with matching number(), boolean() or OUString ctor, ran it, few manual tweaks, mark as really deprecated. Change-Id: I4a79bdbcf4c460d21e73b635d2bd3725c22876b2
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/writemodfile.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/writemodfile.cxx b/configmgr/source/writemodfile.cxx
index 1ab181cb08c9..f099acfc7fd9 100644
--- a/configmgr/source/writemodfile.cxx
+++ b/configmgr/source/writemodfile.cxx
@@ -176,15 +176,15 @@ void writeValueContent(oslFileHandle handle, sal_Int16 value) {
}
void writeValueContent(oslFileHandle handle, sal_Int32 value) {
- writeData(handle, OString::valueOf(value));
+ writeData(handle, OString::number(value));
}
void writeValueContent(oslFileHandle handle, sal_Int64 value) {
- writeData(handle, OString::valueOf(value));
+ writeData(handle, OString::number(value));
}
void writeValueContent(oslFileHandle handle, double value) {
- writeData(handle, OString::valueOf(value));
+ writeData(handle, OString::number(value));
}
void writeValueContent(oslFileHandle handle, OUString const & value) {