diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2018-11-08 09:25:18 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2018-11-18 05:24:55 +0100 |
commit | dddcfa0089bc84965d7a2c94f5f738a325cfae78 (patch) | |
tree | 28909b95b3fa1c64270259b4897668eb5b7a82fb /include | |
parent | 1baf55c0ab7cc003225fd9adcaf702a511db575a (diff) |
tdf#94231 OOXML Import: Fix disappeared Hatch Background Color
With adding the PROP_FillBackground property to spnCommonPropIds and
spnFilledPropIds the hatch background color imported correctly,
an will not disappear.
Change-Id: I56745179236d2912a2d5c8585098e54acc4e3062
Reviewed-on: https://gerrit.libreoffice.org/63069
Tested-by: Jenkins
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/drawingml/shapepropertymap.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/oox/drawingml/shapepropertymap.hxx b/include/oox/drawingml/shapepropertymap.hxx index bace1978d78a..edbae76f0d6c 100644 --- a/include/oox/drawingml/shapepropertymap.hxx +++ b/include/oox/drawingml/shapepropertymap.hxx @@ -72,10 +72,10 @@ enum class ShapeProperty FillBitmapOffsetY, FillBitmapRectanglePoint, FillHatch, /// Explicit fill hatch or name of a fill hatch stored in a global container. - ShadowXDistance, - FillBitmapName, FillBackground, - LAST = FillBackground + FillBitmapName, + ShadowXDistance, + LAST = ShadowXDistance }; typedef o3tl::enumarray<ShapeProperty, sal_Int32> ShapePropertyIds; |