oox/source/shape/WpsContext.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 777df29e306be375c48c586855376bc25f4b85f4 Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Mon Jan 2 14:50:46 2023 +0100 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Mon Jan 2 14:14:29 2023 +0000 Fix typo Change-Id: Ieae98c993d8e67d07e03c5ed13d8e11a0541f30d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144955 Tested-by: Julien Nabet <serval2...@yahoo.fr> Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/oox/source/shape/WpsContext.cxx b/oox/source/shape/WpsContext.cxx index 943d639fd8f6..767f3807607f 100644 --- a/oox/source/shape/WpsContext.cxx +++ b/oox/source/shape/WpsContext.cxx @@ -97,7 +97,7 @@ bool lcl_getTextPropsFromFrameText(const uno::Reference<text::XText>& xText, // CharInteropGrabBag puts all attributes of an element into a property with Name="attributes" and // Value being a sequence of the attributes. This methods finds the value of an individual rName // attribute and puts it into rValue parameter. If it does not find it, rValue is unchanged and -// the methode returns false, otherwise it returns true. +// the method returns false, otherwise it returns true. bool lcl_getAttributeAsString(const uno::Sequence<beans::PropertyValue>& aPropertyValueAsSeq, const OUString& rName, OUString& rValue) { @@ -219,7 +219,7 @@ void lcl_getFillDetailsFromPropSeq(const uno::Sequence<beans::PropertyValue>& rT if ((aTextFillMap.getValue(u"gradFill") >>= aPropSeq) && aPropSeq.hasElements()) { rFillProperties.moFillType = oox::XML_gradFill; - // aPropSeq should have two items. One ist "gsLst" for the stop colors, the other is + // aPropSeq should have two items. One is "gsLst" for the stop colors, the other is // either "lin" or "path" for the kind of gradient. // First get stop colors comphelper::SequenceAsHashMap aPropMap(aPropSeq);