diff options
author | PriyankaGaikwad <priyanka.gaikwad@synerzip.com> | 2015-03-26 13:41:47 +0530 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-12 08:40:32 +0000 |
commit | a878ffae876610bf7522d79685b6e07191a88214 (patch) | |
tree | 455e2c5d747489dcc39bc1a4fddaedb67ed8d2a9 /include/oox | |
parent | 511499b3ba08024e3d6853f096ad1d96f96b216d (diff) |
tdf#90246 PPTX paragraph and bullet leftMargin and Indentation is not exported
Problem Description :
XML Difference
Original :
<a:pPr marL="360000" indent="-456840">
After RT :
<a:pPr>
Solution : added support for marL and indent for paragraph and bullet.
Change-Id: I1132d7b90ac1d7fc924f9a048f189e07e255e33b
Reviewed-on: https://gerrit.libreoffice.org/15016
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/export/drawingml.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx index 24867c2eb39d..2707852def5f 100644 --- a/include/oox/export/drawingml.hxx +++ b/include/oox/export/drawingml.hxx @@ -185,6 +185,7 @@ public: void WriteShape3DEffects( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet ); void WriteArtisticEffect( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet ); OString WriteWdpPicture( const OUString& rFileId, const ::com::sun::star::uno::Sequence< sal_Int8 >& rPictureData ); + sal_Int32 getBulletMarginIndentation (::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet,sal_Int16 nLevel, const OUString& propName); static void ResetCounters(); |