summaryrefslogtreecommitdiff
path: root/bundled
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2017-12-12 12:23:36 +0100
committerMarco Cecchetti <mrcekets@gmail.com>2017-12-16 14:07:23 +0100
commit96a2d3c36ce937454894b6a64e28a53a2c74b856 (patch)
treec2c0140d7a8f07e7f88be1e6cb565f131cc498f3 /bundled
parent864b07f5b341956a660dbd37cd13d64daee416d0 (diff)
calc: LOK_FEATURE_RANGE_ADDRESS (solving compatibility issue)
In order to make cp-5.3 compatible with online 2.1.x we introduced a new enum which by default disables collecting the new range based header data implementation. This patch (re-)enable this feature on online 3.x Change-Id: Ieab4145df9d132810bd871b1a315fd2171ba0ab5 Reviewed-on: https://gerrit.libreoffice.org/46288 Reviewed-by: Jan Holesovsky <kendy@collabora.com> Tested-by: Jan Holesovsky <kendy@collabora.com> (cherry picked from commit 2a2c04651c3a935a793f7710118b5945f6966ab0) Reviewed-on: https://gerrit.libreoffice.org/46598 Reviewed-by: Marco Cecchetti <mrcekets@gmail.com> Tested-by: Marco Cecchetti <mrcekets@gmail.com>
Diffstat (limited to 'bundled')
-rw-r--r--bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h b/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
index cf85d7c6b..f14ce4d36 100644
--- a/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -79,7 +79,12 @@ typedef enum
/**
* Turn off tile rendering for annotations
*/
- LOK_FEATURE_NO_TILED_ANNOTATIONS = (1ULL << 3)
+ LOK_FEATURE_NO_TILED_ANNOTATIONS = (1ULL << 3),
+
+ /**
+ * Enable range based header data
+ */
+ LOK_FEATURE_RANGE_HEADERS = (1ULL << 4)
}
LibreOfficeKitOptionalFeatures;