summaryrefslogtreecommitdiff
path: root/sw/source/core/edit/acorrect.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-11-16 14:54:07 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-11-16 22:14:33 +0100
commitd5811039430e5a76643491c68fed75691969afbd (patch)
treeac14762fe8b0b0d9fc09959e01609a7b4ddf0763 /sw/source/core/edit/acorrect.cxx
parente36fddde8ab87fae6f3428d58a8e890c2b2c798c (diff)
WrtStt->WrdStt for consistency with the other word start abbrevs
Change-Id: I4ec773b5867d804d9c293c4c89cb9be4acb017b8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125315 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/core/edit/acorrect.cxx')
-rw-r--r--sw/source/core/edit/acorrect.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/edit/acorrect.cxx b/sw/source/core/edit/acorrect.cxx
index 1ad211fa4354..d937bf6b1798 100644
--- a/sw/source/core/edit/acorrect.cxx
+++ b/sw/source/core/edit/acorrect.cxx
@@ -624,7 +624,7 @@ void SwAutoCorrExceptWord::CheckChar( const SwPosition& rPos, sal_Unicode cChr )
// then add to the list:
if (ACFlags::CapitalStartWord & m_nFlags)
- pACorr->AddWrtSttException(m_sWord, m_eLanguage);
+ pACorr->AddWrdSttException(m_sWord, m_eLanguage);
else if (ACFlags::CapitalStartSentence & m_nFlags)
pACorr->AddCplSttException(m_sWord, m_eLanguage);
}