From 8578aabbc45ce3601fc0cfca89d8914c2e2632d3 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 13 Mar 2014 10:32:14 +0200 Subject: "prefix" and "postfix" are single words Change-Id: I32824c614d070cd4649e18da4a0b91b03bccfaba --- ucb/source/ucp/file/shell.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ucb') 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 ); } -- cgit