diff options
author | Sushil Shinde <sushil.shinde@synerzip.com> | 2015-03-03 19:14:25 +0530 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-03-20 08:13:00 +0000 |
commit | 63442ec636d637e05d7d585817df531dbbeb96d9 (patch) | |
tree | 7194425a0741d5be07c1c36533f1a9dc37ca47b0 /include/oox/export | |
parent | 5f904b2646771b5270efc59dd38bcf4122741c12 (diff) |
tdf#89806 : Fixed background fill export for table cell.
1. Table cell properties were exproted empty if file
saved as .pptx file.
2. Now added code to export table cell fill properties
in 'tcPr'(Table cell properties xml tag)
3. Added unit test to check exported table cell fill
properties.
Change-Id: Ica6005a65c7eefb8629c808f2a54764f98badb11
Reviewed-on: https://gerrit.libreoffice.org/14734
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'include/oox/export')
-rw-r--r-- | include/oox/export/shapes.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/oox/export/shapes.hxx b/include/oox/export/shapes.hxx index bca9ca67ff4c..7b5afb01e62a 100644 --- a/include/oox/export/shapes.hxx +++ b/include/oox/export/shapes.hxx @@ -160,6 +160,7 @@ public: void WriteTable( ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > rXShape ); + void WriteTableCellProperties(::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet); sal_Int32 GetNewShapeID( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > rShape ); sal_Int32 GetNewShapeID( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > rShape, ::oox::core::XmlFilterBase* pFB ); |