diff options
author | Khaled Hosny <khaled@libreoffice.org> | 2023-09-17 19:31:27 +0300 |
---|---|---|
committer | خالد حسني <khaled@libreoffice.org> | 2023-09-18 02:32:15 +0200 |
commit | 9023cbc96c3538995f0ef9042aebcad14711cd60 (patch) | |
tree | 12eb9e6a0227406e61ad5811290ab63dd1d1575b /starmath/inc | |
parent | d4edecb26cc5a801815a612cdd27f3dc621d5038 (diff) |
tdf#111705: Add support of Persian limits operator (U+1EEF1)
Change-Id: I9936a206b2ce6c8d195967d1e14596c5903c1ef5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156995
Tested-by: Jenkins
Reviewed-by: خالد حسني <khaled@libreoffice.org>
Diffstat (limited to 'starmath/inc')
-rw-r--r-- | starmath/inc/token.hxx | 1 | ||||
-rw-r--r-- | starmath/inc/types.hxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/starmath/inc/token.hxx b/starmath/inc/token.hxx index a47e741a4358..8409af89dd8a 100644 --- a/starmath/inc/token.hxx +++ b/starmath/inc/token.hxx @@ -84,6 +84,7 @@ enum SmTokenType TIM, TRE, THBAR, TLAMBDABAR, // Complex and constants TPLUSMINUS, TMINUSPLUS, TSIM, TSIMEQ, // +- -+ ~ ~= TLIM, TLIMSUP, TLIMINF, TTOWARD, // Limits + THADD, TOVER, TTIMES, TCDOT, TDIV, // Product type TSLASH, TBACKSLASH, TWIDESLASH, TWIDEBACKSLASH, //Slash TFRAC, TIT, // mathml related diff --git a/starmath/inc/types.hxx b/starmath/inc/types.hxx index 597f6dcd187f..e91d6da7f363 100644 --- a/starmath/inc/types.hxx +++ b/starmath/inc/types.hxx @@ -126,6 +126,7 @@ sal_Unicode const MS_PROD = 0x220F; sal_Unicode const MS_COPROD = 0x2210; sal_Unicode const MS_SUM = 0x2211; sal_uInt32 const MS_MAJ = 0x1EEF0; +sal_uInt32 const MS_HADD = 0x1EEF1; sal_Unicode const MS_SQRT = 0x221A; sal_Unicode const MS_INT = 0x222B; sal_Unicode const MS_IINT = 0x222C; |