diff options
author | Rafael Lima <rafael.palma.lima@gmail.com> | 2024-03-25 15:24:30 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2024-04-01 05:56:10 +0200 |
commit | 350c590620226c4d5b94aa01d3853e15af3cebb0 (patch) | |
tree | b62831a5bdb93e24c2ba24706bd2add8a9293385 /schema | |
parent | 069bf61cea5e3aea07ffd5a1bb9f55324651cb35 (diff) |
tdf#160356 Add support for hidden named expressions in Calc
Since bug 154449 was fixed, Calc now supports hidden named ranges. However, named expressions were not considered in the original patch and it would be useful to support hidden named expressions as well.
This patch adds suppport for hidden named expressions (import and export).
Change-Id: I2580416dcd5db0fcb2aa9061085cdc9975fb03c1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165239
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'schema')
-rw-r--r-- | schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng b/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng index 9bdcd989f735..7101ce8cfc4c 100644 --- a/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng +++ b/schema/libreoffice/OpenDocument-v1.3+libreoffice-schema.rng @@ -2099,6 +2099,25 @@ xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1. </rng:choice> </rng:attribute> </rng:optional> + </rng:define> + + <rng:define name="table-named-expression-attlist"> + <rng:attribute name="table:name"> + <rng:ref name="string"/> + </rng:attribute> + <rng:attribute name="table:expression"> + <rng:ref name="string"/> + </rng:attribute> + <rng:optional> + <rng:attribute name="table:base-cell-address"> + <rng:ref name="cellAddress"/> + </rng:attribute> + </rng:optional> + <rng:optional> + <rng:attribute name="loext:hidden"> + <rng:ref name="boolean"/> + </rng:attribute> + </rng:optional> </rng:define> </rng:include> |