diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-09-12 21:03:42 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-09-13 07:14:46 +0200 |
commit | 3020dfbee490761e7192668f39e65989dd2b1a50 (patch) | |
tree | f279ad68b7478fcf16db4d261f35cb3972485e49 | |
parent | 93c5885dad3343f3d1a55e33bf83fecd1fed8cab (diff) |
Fix typo
Change-Id: I1ede635acbbe3a4e18d5b9a90be19a04292f662e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156859
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | sw/source/core/fields/docufld.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/fields/docufld.cxx b/sw/source/core/fields/docufld.cxx index f52650925ace..37249555a0e4 100644 --- a/sw/source/core/fields/docufld.cxx +++ b/sw/source/core/fields/docufld.cxx @@ -1902,7 +1902,7 @@ bool SwPostItField::QueryValue( uno::Any& rAny, sal_uInt16 nWhichId ) const case FIELD_PROP_PAR4: rAny <<= m_sName; break; - case FIELD_PROP_PAR7: // PAR5 (Parent Para Id) and PAR6 (Para Id) are skipped - they are not written into xml. Used for file convertion. + case FIELD_PROP_PAR7: // PAR5 (Parent Para Id) and PAR6 (Para Id) are skipped - they are not written into xml. Used for file conversion. rAny <<= m_sParentName; break; case FIELD_PROP_BOOL1: @@ -1971,7 +1971,7 @@ bool SwPostItField::PutValue( const uno::Any& rAny, sal_uInt16 nWhichId ) case FIELD_PROP_PAR4: rAny >>= m_sName; break; - case FIELD_PROP_PAR7: // PAR5 (Parent Para Id) and PAR6 (Para Id) are skipped - they are not written into xml. Used for file convertion. + case FIELD_PROP_PAR7: // PAR5 (Parent Para Id) and PAR6 (Para Id) are skipped - they are not written into xml. Used for file conversion. rAny >>= m_sParentName; break; case FIELD_PROP_BOOL1: |