summaryrefslogtreecommitdiff
path: root/oox/source/helper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-13 16:18:33 +0200
committerNoel Grandin <noel@peralex.com>2013-11-14 08:17:31 +0200
commit99a1f38156aefd7ac3e578ebea74e4bbecdc64dc (patch)
tree2f434c4241e848a650cc3e4e601dec80ca8cc844 /oox/source/helper
parentd9648d3567e60f4482984a25e2b78e8a2fae52e3 (diff)
remove unnecessary sal_Unicode casts in OOX module
Change-Id: I2b9f26cb500a9e56f5860bd1b483ed284b84f50d
Diffstat (limited to 'oox/source/helper')
-rw-r--r--oox/source/helper/storagebase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/helper/storagebase.cxx b/oox/source/helper/storagebase.cxx
index 9088daeb2881..b0755bc2ec04 100644
--- a/oox/source/helper/storagebase.cxx
+++ b/oox/source/helper/storagebase.cxx
@@ -120,7 +120,7 @@ OUString StorageBase::getPath() const
{
OUStringBuffer aBuffer( maParentPath );
if( !aBuffer.isEmpty() )
- aBuffer.append( sal_Unicode( '/' ) );
+ aBuffer.append( '/' );
aBuffer.append( maStorageName );
return aBuffer.makeStringAndClear();
}