sw/source/filter/ww8/rtfexport.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 92e2869fc6703d5154ca01c9c747ea94189f1f88 Author: Caolán McNamara <[email protected]> AuthorDate: Wed Oct 29 20:29:48 2025 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Thu Oct 30 09:56:44 2025 +0100 export of RTF_AUTHOR may need RTF_UPR and RTF_UD this is similar to: commit 5de52551a963b932cc23c2ea75f709fa1924520b Author: Miklos Vajna <[email protected]> Date: Tue Feb 26 17:28:27 2013 +0100 fdo#61507 export of RTF_TITLE may need RTF_UPR and RTF_UD except this time its the Author property Change-Id: I5e68ef671fa715e37e8a56744642517f87c22e10 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193169 Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Jenkins diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx index 1bc1e77c53e2..a7a3dd6c80e5 100644 --- a/sw/source/filter/ww8/rtfexport.cxx +++ b/sw/source/filter/ww8/rtfexport.cxx @@ -571,10 +571,10 @@ void RtfExport::WriteInfo() ::comphelper::string::convertCommaSeparated(xDocProps->getKeywords())); OutUnicode(OOO_STRING_SVTOOLS_RTF_DOCCOMM, xDocProps->getDescription()); - OutUnicode(OOO_STRING_SVTOOLS_RTF_AUTHOR, xDocProps->getAuthor()); + OutUnicode(OOO_STRING_SVTOOLS_RTF_AUTHOR, xDocProps->getAuthor(), true); OutDateTime(OOO_STRING_SVTOOLS_RTF_CREATIM, xDocProps->getCreationDate()); - OutUnicode(OOO_STRING_SVTOOLS_RTF_AUTHOR, xDocProps->getModifiedBy()); + OutUnicode(OOO_STRING_SVTOOLS_RTF_AUTHOR, xDocProps->getModifiedBy(), true); OutDateTime(OOO_STRING_SVTOOLS_RTF_REVTIM, xDocProps->getModificationDate()); OutDateTime(OOO_STRING_SVTOOLS_RTF_PRINTIM, xDocProps->getPrintDate());
