summaryrefslogtreecommitdiff
path: root/include/oox/export/drawingml.hxx
diff options
context:
space:
mode:
authorJacobo Aragunde Pérez <jaragunde@igalia.com>2014-01-30 12:23:46 +0100
committerJacobo Aragunde Pérez <jaragunde@igalia.com>2014-01-30 12:29:06 +0100
commit28db7d7919524989aff96c33051cceeac4adb2a1 (patch)
tree77bff77cfb3430ea1792c9414ebc1068504c84b0 /include/oox/export/drawingml.hxx
parent4e8736ed562e4e54775042f082082d52e5b203f0 (diff)
drawingML: fix transparency of shape solid fill
The empty value for transparency in drawingML is 100% and not 0. Change-Id: I5f34f03b9b72cc20e92e32f9c9bc1bdfae73ff55
Diffstat (limited to 'include/oox/export/drawingml.hxx')
-rw-r--r--include/oox/export/drawingml.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx
index 000cd4e81302..08fb539992fc 100644
--- a/include/oox/export/drawingml.hxx
+++ b/include/oox/export/drawingml.hxx
@@ -27,6 +27,7 @@
#include <com/sun/star/uno/XReference.hpp>
#include <tools/poly.hxx>
#include <filter/msfilter/escherex.hxx>
+#include "oox/drawingml/drawingmltypes.hxx"
#ifndef PPTX_EXPORT_ROTATE_CLOCKWISIFY
// Our rotation is counter-clockwise and is in 100ths of a degree.
// drawingML rotation is clockwise and is in 60000ths of a degree.
@@ -120,8 +121,8 @@ public:
void WriteLineArrow( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet, sal_Bool bLineStart );
void WriteConnectorConnections( EscherConnectorListEntry& rConnectorEntry, sal_Int32 nStartID, sal_Int32 nEndID );
- void WriteSolidFill( sal_uInt32 nColor, sal_Int32 nAlpha = 0 );
- void WriteSolidFill( OUString sSchemeName, sal_Int32 nAlpha = 0 );
+ void WriteSolidFill( sal_uInt32 nColor, sal_Int32 nAlpha = MAX_PERCENT );
+ void WriteSolidFill( OUString sSchemeName, sal_Int32 nAlpha = MAX_PERCENT );
void WriteSolidFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet );
void WriteGradientFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet );
void WriteBlipFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet, OUString sURLPropName, sal_Int32 nXmlNamespace );