summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpfribsection.cxx
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-11-24 11:07:05 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-24 14:17:03 +0100
commita153ece6da428f137d5161f853825239d5fe4582 (patch)
treead107e33cb21dc18488a58c7db404ae1633799f0 /lotuswordpro/source/filter/lwpfribsection.cxx
parentbadf34d439403cea5c7efa206f4535c5050de37c (diff)
FindActuralStyleName->FindActualStyleName
Change-Id: I25e021caeb1c71529350df95099fb344edfd5b81 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106482 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lotuswordpro/source/filter/lwpfribsection.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpfribsection.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwpfribsection.cxx b/lotuswordpro/source/filter/lwpfribsection.cxx
index 0e0e34df16f9..f411a8bbb957 100644
--- a/lotuswordpro/source/filter/lwpfribsection.cxx
+++ b/lotuswordpro/source/filter/lwpfribsection.cxx
@@ -177,7 +177,7 @@ void LwpFribSection::ParseSection()
void LwpFribSection::SetDefaultAlphaIndex(XFIndex* pXFIndex)
{
LwpFoundry* pFoundry = m_pPara->GetFoundry();
- OUString styleName = pFoundry->FindActuralStyleName("Separator");
+ OUString styleName = pFoundry->FindActualStyleName("Separator");
LwpIndexSection* pIndexSection = dynamic_cast<LwpIndexSection*>(m_Section.obj().get());
XFIndexTemplate* pTemplateSep = new XFIndexTemplate();
@@ -189,7 +189,7 @@ void LwpFribSection::SetDefaultAlphaIndex(XFIndex* pXFIndex)
//pXFIndex->AddTemplate("separator","Separator",pTemplateSep);
pXFIndex->AddTemplate("separator", styleName, pTemplateSep);
- styleName = pFoundry->FindActuralStyleName("Primary");
+ styleName = pFoundry->FindActualStyleName("Primary");
XFIndexTemplate* pTemplate1 = new XFIndexTemplate();
pTemplate1->AddEntry(enumXFIndexTemplateText, "");
@@ -218,7 +218,7 @@ void LwpFribSection::SetDefaultAlphaIndex(XFIndex* pXFIndex)
{
//pXFIndex->AddTemplate(OUString::number(2),"Secondary",pTemplate2);
//pXFIndex->AddTemplate(OUString::number(3),"Secondary",pTemplate3);
- styleName = pFoundry->FindActuralStyleName("Secondary");
+ styleName = pFoundry->FindActualStyleName("Secondary");
pXFIndex->AddTemplate(OUString::number(2), styleName, pTemplate2);
pXFIndex->AddTemplate(OUString::number(3), styleName, pTemplate3);
}