diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-05-26 18:17:24 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-05-30 00:08:06 +0200 |
commit | 4bb92b4c4a971d501144024a9180dfcd14256f8e (patch) | |
tree | bdce635bb49f0c2087332d4783671cc531929ba5 /sw | |
parent | 02de40905fc515084c29d258c627f07b98c63aaa (diff) |
Fix typo
Change-Id: Ia7b3b9d770fdaf5ba6697b4ebb23befdb51fc949
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94878
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index ecdc1860d6e3..4108c9226b78 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -5779,7 +5779,7 @@ void DocxAttributeOutput::OutputFlyFrame_Impl( const ww8::Frame &rFrame, const P //output variable for the formula alignment (default inline) sal_Int8 nAlign(FormulaExportBase::eFormulaAlign::INLINE); - auto xObj(rOLENd.GetOLEObj().GetOleRef()); //get the xObject of the forumla + auto xObj(rOLENd.GetOLEObj().GetOleRef()); //get the xObject of the formula //tdf133030: Export formula position //If we have a formula with inline anchor... @@ -5788,7 +5788,7 @@ void DocxAttributeOutput::OutputFlyFrame_Impl( const ww8::Frame &rFrame, const P SwPosition const* const aAPos = rFrameFormat.GetAnchor().GetContentAnchor(); if(aAPos) { - //Get the text node what the forumla anchored to + //Get the text node what the formula anchored to const SwTextNode* pTextNode = aAPos->nNode.GetNode().GetTextNode(); if(pTextNode && pTextNode->Len() == 1) { |