diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-06 09:05:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-07 07:42:35 +0100 |
commit | f3e258e343dd6e3ca39fc8cb710ed6c4cbb530ba (patch) | |
tree | 1239470f245cd9c4e4cfc78990030bc3506e553f /include/xmloff | |
parent | e57d61f9c052c4ebb3f940a67ed6dddf26ad5cf0 (diff) |
remove unused XMLShapeExportFlags::NO_CHART_DATA
dead since
commit ec712408961a4a2efc667a7af83a21209907f9eb
Date: Fri Nov 20 11:58:22 2009 +0100
chartpositioning: #i100778# chart positioning excluding labels
Change-Id: Ibc7f23d51a0ba4ac1e63cd89a28298d95a405110
Reviewed-on: https://gerrit.libreoffice.org/64718
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/xmloff')
-rw-r--r-- | include/xmloff/shapeexport.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/xmloff/shapeexport.hxx b/include/xmloff/shapeexport.hxx index d9cb574deadc..6dbbde2b8b82 100644 --- a/include/xmloff/shapeexport.hxx +++ b/include/xmloff/shapeexport.hxx @@ -53,8 +53,6 @@ enum class XMLShapeExportFlags { WIDTH = 0x0004, HEIGHT = 0x0008, SIZE = WIDTH | HEIGHT, -// when you set this flag a chart does NOT export its own data as table element - NO_CHART_DATA = 0x0010, // When setting the flag below no ignorableWhiteSpace will be called around // the drawing object elements NO_WS = 0x0020, @@ -63,7 +61,7 @@ enum class XMLShapeExportFlags { }; namespace o3tl { - template<> struct typed_flags<XMLShapeExportFlags> : is_typed_flags<XMLShapeExportFlags, 0x7f> {}; + template<> struct typed_flags<XMLShapeExportFlags> : is_typed_flags<XMLShapeExportFlags, 0x6f> {}; } #define SEF_DEFAULT XMLShapeExportFlags::POSITION|XMLShapeExportFlags::SIZE |