summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2011-11-26 00:48:17 -0500
committerAugust Sodora <augsod@gmail.com>2011-11-26 00:49:26 -0500
commit93253ee6ab355a0590e9632e2ce2f024af15c535 (patch)
treeb2fe179dca06062786ce4d243f9e7bceab3f0c00 /framework
parent8039cd4d7db58921f7d35eeea93cd7f85a5e0815 (diff)
Remove some uses of OUString::setCharAt
Diffstat (limited to 'framework')
-rw-r--r--framework/source/fwe/helper/configimporter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/fwe/helper/configimporter.cxx b/framework/source/fwe/helper/configimporter.cxx
index 53752ba15109..7586f9a6c49d 100644
--- a/framework/source/fwe/helper/configimporter.cxx
+++ b/framework/source/fwe/helper/configimporter.cxx
@@ -58,7 +58,7 @@ sal_Bool UIConfigurationImporterOOo1x::ImportCustomToolbars(
{
rtl::OUStringBuffer aCustomTbxName( 20 );
aCustomTbxName.appendAscii( USERDEFTOOLBOX );
- aCustomTbxName.setCharAt( 14, aCustomTbxName.charAt( 14 ) + i );
+ aCustomTbxName[14] = aCustomTbxName[14] + i;
rtl::OUString aTbxStreamName( aCustomTbxName.makeStringAndClear() );
uno::Reference< io::XStream > xStream = rToolbarStorage->openStreamElement( aTbxStreamName, embed::ElementModes::READ );