diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-30 11:12:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-30 11:12:33 +0200 |
commit | 109582aad9e5a7066214ff70c388a3b92d128bb9 (patch) | |
tree | 1163a16a0af9c68da091cb6e6c38918c06e97967 | |
parent | 0dccc59702c4a30e9aca8251e64678a2588a5513 (diff) |
FillTransparence is of UNO type short
Change-Id: I29ade324b4bb5eb34ce05107794f0ac9a4834c6e
-rw-r--r-- | oox/source/vml/vmlshape.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx index bd738d295081..3f4e3fcc1a55 100644 --- a/oox/source/vml/vmlshape.cxx +++ b/oox/source/vml/vmlshape.cxx @@ -332,7 +332,7 @@ Reference< XShape > ShapeBase::convertAndInsert( const Reference< XShapes >& rxS if (propertySet->getPropertyValue("FillStyle") == FillStyle_NONE && propertySet->getPropertyValue("BackColorTransparency") == makeAny(100)) { // If there is no fill, the Word default is 100% transparency. - propertySet->setPropertyValue("FillTransparence", makeAny(100)); + propertySet->setPropertyValue("FillTransparence", makeAny(sal_Int16(100))); } } else |