summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2023-01-02 14:50:46 +0100
committerJulien Nabet <serval2412@yahoo.fr>2023-01-02 14:14:29 +0000
commit777df29e306be375c48c586855376bc25f4b85f4 (patch)
treef13ea49a95980e0bbb7dce4b8c3d72bb733bfe47 /oox
parent3b7c9049c6887c0004edb9da9fd4a68d4c8ab951 (diff)
Fix typo
Change-Id: Ieae98c993d8e67d07e03c5ed13d8e11a0541f30d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144955 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/shape/WpsContext.cxx4
1 files changed, 2 insertions, 2 deletions
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);