From d905daa0d05010ffe938790c513e25df3301b310 Mon Sep 17 00:00:00 2001 From: Marcos Paulo de Souza Date: Sun, 30 Dec 2012 14:00:42 -0200 Subject: fdo#57950: One more chained append in basic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I179b5bfd1d85152a53bb821ab9eeb78efb8a6083 Signed-off-by: Marcos Paulo de Souza Reviewed-on: https://gerrit.libreoffice.org/1516 Reviewed-by: Luboš Luňák Tested-by: Luboš Luňák --- basic/source/classes/sbunoobj.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'basic/source/classes/sbunoobj.cxx') diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index 30f5c9fcec4a..e5ec362a66a9 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -954,10 +954,8 @@ Type getUnoTypeForSbxValue( SbxValue* pVal ) } } - OUStringBuffer aSeqTypeName; - aSeqTypeName.appendAscii(aSeqLevelStr) - .append(aElementType.getTypeName()); - aRetType = Type( TypeClass_SEQUENCE, aSeqTypeName.makeStringAndClear() ); + OUString aSeqTypeName = aSeqLevelStr + aElementType.getTypeName(); + aRetType = Type( TypeClass_SEQUENCE, aSeqTypeName ); } // #i33795 Map also multi dimensional arrays to corresponding sequences else if( nDims > 1 ) -- cgit