Hi,
I have submitted a patch for review:
https://gerrit.libreoffice.org/1516
To pull it, you can do:
git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/16/1516/1
fdo#57950: One more chained append in basic
Change-Id: I179b5bfd1d85152a53bb821ab9eeb78efb8a6083
Signed-off-by: Marcos Paulo de Souza <[email protected]>
---
M basic/source/classes/sbunoobj.cxx
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/basic/source/classes/sbunoobj.cxx
b/basic/source/classes/sbunoobj.cxx
index 30f5c9f..e5ec362 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -954,10 +954,8 @@
}
}
- 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 )
--
To view, visit https://gerrit.libreoffice.org/1516
To unsubscribe, visit https://gerrit.libreoffice.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I179b5bfd1d85152a53bb821ab9eeb78efb8a6083
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza <[email protected]>
_______________________________________________
LibreOffice mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice