summaryrefslogtreecommitdiffstats
path: root/framework/source/fwe/helper/configimporter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/fwe/helper/configimporter.cxx')
-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 );