diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-07-25 00:42:27 +0200 |
---|---|---|
committer | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-07-25 07:07:25 +0200 |
commit | 5ccc8124a03cffca3a1848f754524a06a063cb51 (patch) | |
tree | 3456a0c42c38a1936680a4266fbb76c4d585025f /unotools | |
parent | ed882d693f37779e3a09641e7cd43b7a925d2312 (diff) |
Fix typos
Change-Id: I59a0fd175fa5185c15d093d2d9bed9f95bb4cfd5
Reviewed-on: https://gerrit.libreoffice.org/76280
Tested-by: Jenkins
Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/configitem.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/config/configitem.cxx b/unotools/source/config/configitem.cxx index 29097d32fd56..13928a4891fe 100644 --- a/unotools/source/config/configitem.cxx +++ b/unotools/source/config/configitem.cxx @@ -178,7 +178,7 @@ void ConfigItem::impl_packLocalizedProperties( const Sequence< OUString >& sal_Int32 nPropertyCounter; // counter of inner loop for Sequence< PropertyValue > sal_Int32 nPropertiesSize; // marks end of inner loop Sequence< OUString > lPropertyNames; // list of all locales for localized entry - Sequence< PropertyValue > lProperties; // localized values of an configuration entry packed for return + Sequence< PropertyValue > lProperties; // localized values of a configuration entry packed for return Reference< XInterface > xLocalizedNode; // if cfg entry is localized ... lInValues contains an XInterface! // Optimise follow algorithm ... A LITTLE BIT :-) @@ -244,7 +244,7 @@ void ConfigItem::impl_unpackLocalizedProperties( const Sequence< OUString > sal_Int32 nDestinationCounter; // actual position in output lists sal_Int32 nPropertiesSize; // marks end of inner loop OUString sNodeName; // base name of node ( e.g. "UIName/" ) ... expand to locale ( e.g. "UIName/de" ) - Sequence< PropertyValue > lProperties; // localized values of an configuration entry gotten from lInValues-Any + Sequence< PropertyValue > lProperties; // localized values of a configuration entry gotten from lInValues-Any // Optimise follow algorithm ... A LITTLE BIT :-) // There exist two different possibilities: |