summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-12 17:25:05 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-19 09:36:45 +0200
commitdf983c2f9fc75d619c3a83b0d326ab85331cd426 (patch)
tree430403fe0d3f15019738fd07fdbacc7f5b2c9873 /sw
parent4be6ce6a4888118a10d75cb756b712adb77973a2 (diff)
Fix typo
Change-Id: I07929ffe015e1d22fcac6969b00644b82620d4cc Reviewed-on: https://gerrit.libreoffice.org/75506 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk> (cherry picked from commit a41984d0d71f6b76d0e56604b17b52774e39197d) Reviewed-on: https://gerrit.libreoffice.org/77577 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/shells/textfld.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/shells/textfld.cxx b/sw/source/uibase/shells/textfld.cxx
index 795cb38866ae..28d4d7762594 100644
--- a/sw/source/uibase/shells/textfld.cxx
+++ b/sw/source/uibase/shells/textfld.cxx
@@ -671,7 +671,7 @@ FIELD_INSERT:
SwPaM* pCursorPos = rSh.GetCursor();
if(pCursorPos)
{
- // Insert five enspace into the text field so the field has extent
+ // Insert five En Space into the text field so the field has extent
sal_Unicode vEnSpaces[ODF_FORMFIELD_DEFAULT_LENGTH] = {8194, 8194, 8194, 8194, 8194};
bool bSuccess = rSh.GetDoc()->getIDocumentContentOperations().InsertString(*pCursorPos, OUString(vEnSpaces, ODF_FORMFIELD_DEFAULT_LENGTH));
if(bSuccess)