unotools/source/config/configitem.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit f788fe2811c651228322aa71098d739210980148 Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Wed Jun 19 13:46:32 2024 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Wed Jun 19 23:04:10 2024 +0200 Fix typo Change-Id: I5a95344bc561e13a34ec558225f6ce8fc43dfb4e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169211 Reviewed-by: Julien Nabet <serval2...@yahoo.fr> Tested-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/unotools/source/config/configitem.cxx b/unotools/source/config/configitem.cxx index 116d7f8e3ea8..efb90e0c5273 100644 --- a/unotools/source/config/configitem.cxx +++ b/unotools/source/config/configitem.cxx @@ -252,7 +252,7 @@ void ConfigItem::impl_unpackLocalizedProperties( const Sequence< OUString > // Optimise follow algorithm ... A LITTLE BIT :-) // There exist two different possibilities: // i ) There exist no localized entries ... => size of lOutNames/lOutValues will be the same like lInNames/lInValues! - // ii) There exist some (mostly one or two) localized entries ... => size of lOutNames/lOutValues will be some bytes greater then lInNames/lInValues. + // ii) There exist some (mostly one or two) localized entries ... => size of lOutNames/lOutValues will be some bytes greater than lInNames/lInValues. // => I think we should make it fast for i). ii) is a special case and mustn't be SOOOO... fast. // We should reserve same space for output list like input ones first. // Follow algorithm looks for these borders and change it for ii) only!