summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/shell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/shell.cxx')
-rw-r--r--ucb/source/ucp/file/shell.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/file/shell.cxx b/ucb/source/ucp/file/shell.cxx
index ec7bce87f18a..b9c0390551ed 100644
--- a/ucb/source/ucp/file/shell.cxx
+++ b/ucb/source/ucp/file/shell.cxx
@@ -1187,7 +1187,7 @@ shell::move( sal_Int32 CommandId,
newDstUnqPath = dstUnqPath;
OUString aPostFix( "_" );
- aPostFix += OUString::valueOf( ++nTry );
+ aPostFix += OUString::number( ++nTry );
newDstUnqPath = newDstUnqPath.replaceAt( nPos, 0, aPostFix );
@@ -1414,7 +1414,7 @@ shell::copy(
newDstUnqPath = dstUnqPath;
OUString aPostFix( "_" );
- aPostFix += OUString::valueOf( ++nTry );
+ aPostFix += OUString::number( ++nTry );
newDstUnqPath = newDstUnqPath.replaceAt( nPos, 0, aPostFix );