summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2024-07-01 23:03:47 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2024-07-08 11:10:59 +0200
commit4fe0b058d3173c2b8decee324989eef5ede30ca5 (patch)
tree57ed4876ea6150509e723c48d290f3c60a13b0d4 /sd
parentbfc49355d472cd41399b7d68ede1e7c3f2ebdcdc (diff)
ppt export: Respect user defined initials
instead of generating new ones. Change-Id: If64690ac2aa22542e6b3939f3ed9cdc3c9f3be84 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169844 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170092
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/eppt/eppt.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx
index 1d0f242c20b1..1d7d564de8f6 100644
--- a/sd/source/filter/eppt/eppt.cxx
+++ b/sd/source/filter/eppt/eppt.cxx
@@ -1054,7 +1054,10 @@ void PPTWriter::ImplExportComments( const uno::Reference< drawing::XDrawPage >&
: xAnnotation->getAuthor() );
uno::Reference< text::XText > xText( xAnnotation->getTextRange() );
OUString sText( xText->getString() );
- OUString sInitials( GetInitials( sAuthor ) );
+ OUString sInitials(
+ bRemoveCommentAuthorDates
+ ? "A" + OUString::number(mpAuthorIDs->GetInfoID(xAnnotation->getAuthor()))
+ : xAnnotation->getInitials());
util::DateTime aEmptyDateTime;
util::DateTime aDateTime(bRemoveCommentAuthorDates ? aEmptyDateTime
: xAnnotation->getDateTime());