summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-04-04 16:20:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-04-05 09:23:04 +0200
commitb3cd552f4fdf5f15d9b440efe9d8cc9670248e79 (patch)
tree4b262b87d902004430734e7248dd90da3f70bc26 /filter
parent5b6fbf522f434c2f55022476e0c4706cc0929ab5 (diff)
fix bug in ppt import filter, ignoring initials
from somewhere before commit d2000efb31f864e912c6cf52760eea0e602b6893 Date: Sat Oct 31 00:29:04 2009 +0100 #i106421#: move msfilter to filter found by my new unusedvariablesmore plugin Change-Id: If19c3023bff9247608c9d3ddb84a0e91116c7224 Reviewed-on: https://gerrit.libreoffice.org/52390 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/svdfppt.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/filter/source/msfilter/svdfppt.cxx b/filter/source/msfilter/svdfppt.cxx
index fb548d0dda6a..9817e93e4b22 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -2720,6 +2720,7 @@ void ImportComment10( SvxMSDffManager const & rMan, SvStream& rStCtrl, SdrPage*
xAnnotation->setPosition( geometry::RealPoint2D( aPosition.X() / 100.0, aPosition.Y() / 100.0 ) );
xAnnotation->setAuthor( sAuthor );
xAnnotation->setDateTime( aDateTime );
+ xAnnotation->setInitials( sInitials );
uno::Reference< text::XText > xText( xAnnotation->getTextRange() );
xText->setString( sText );
}