diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-03-13 10:32:14 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-03-14 07:57:18 +0200 |
commit | 8578aabbc45ce3601fc0cfca89d8914c2e2632d3 (patch) | |
tree | dfbf267bb369285c482277f04881520e8a0fd5fd /ucb | |
parent | e7ea15aef2ac619c153de57cb2bd97ab8dbadf68 (diff) |
"prefix" and "postfix" are single words
Change-Id: I32824c614d070cd4649e18da4a0b91b03bccfaba
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/shell.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/file/shell.cxx b/ucb/source/ucp/file/shell.cxx index 63fb3887d812..ada695bd6ef0 100644 --- a/ucb/source/ucp/file/shell.cxx +++ b/ucb/source/ucp/file/shell.cxx @@ -1194,9 +1194,9 @@ shell::move( sal_Int32 CommandId, { newDstUnqPath = dstUnqPath; - OUString aPostFix = "_" + OUString::number( ++nTry ); + OUString aPostfix = "_" + OUString::number( ++nTry ); - newDstUnqPath = newDstUnqPath.replaceAt( nPos, 0, aPostFix ); + newDstUnqPath = newDstUnqPath.replaceAt( nPos, 0, aPostfix ); nError = osl_File_move( srcUnqPath,newDstUnqPath,true ); } @@ -1420,9 +1420,9 @@ shell::copy( { newDstUnqPath = dstUnqPath; - OUString aPostFix = "_" + OUString::number( ++nTry ); + OUString aPostfix = "_" + OUString::number( ++nTry ); - newDstUnqPath = newDstUnqPath.replaceAt( nPos, 0, aPostFix ); + newDstUnqPath = newDstUnqPath.replaceAt( nPos, 0, aPostfix ); nError = copy_recursive( rslvdSrcUnqPath,newDstUnqPath,IsWhat,true ); } |