summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-09-17 20:36:55 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-09-17 20:38:27 +0200
commit02d811071cf65aefddac5c3c2a0759d3b673e9a7 (patch)
treed8004f7351b22e8cc577d22aae8835e5c475bd3c /starmath/inc
parentc62fc469aa0539929a5c7f9850fb9ee954fe7198 (diff)
fdo #37007 Add Math symbol "There does not exist".
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/helpids.h1
-rw-r--r--starmath/inc/parse.hxx2
-rwxr-xr-xstarmath/inc/starmath.hrc1
-rw-r--r--starmath/inc/types.hxx1
4 files changed, 4 insertions, 1 deletions
diff --git a/starmath/inc/helpids.h b/starmath/inc/helpids.h
index f27b47edcdf3..1da4029e7246 100644
--- a/starmath/inc/helpids.h
+++ b/starmath/inc/helpids.h
@@ -160,6 +160,7 @@
#define HID_SMA_LIMINFX "STARMATH_HID_SMA_LIMINFX"
#define HID_SMA_LIMSUPX "STARMATH_HID_SMA_LIMSUPX"
#define HID_SMA_EXISTS "STARMATH_HID_SMA_EXISTS"
+#define HID_SMA_NOTEXISTS "STARMATH_HID_SMA_NOTEXISTS"
#define HID_SMA_FORALL "STARMATH_HID_SMA_FORALL"
#define HID_SMA_NABLA "STARMATH_HID_SMA_NABLA"
#define HID_SMA_INTX "STARMATH_HID_SMA_INTX"
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx
index 3ad04d123fc7..e4fb34fbd12a 100644
--- a/starmath/inc/parse.hxx
+++ b/starmath/inc/parse.hxx
@@ -97,7 +97,7 @@ enum SmTokenType
/*125*/ TMINUSPLUS, TOPLUS, TOMINUS, TDIV, TOTIMES,
/*130*/ TODIVIDE, TTRANSL, TTRANSR, TIINT, TIIINT,
/*135*/ TLINT, TLLINT, TLLLINT, TPROD, TCOPROD,
-/*140*/ TFORALL, TEXISTS, TLIM, TNABLA, TTOWARD,
+/*140*/ TFORALL, TEXISTS, TNOTEXISTS, TLIM, TNABLA, TTOWARD,
/*145*/ TSINH, TCOSH, TTANH, TCOTH, TASIN,
/*150*/ TACOS, TATAN, TLN, TLOG, TUOPER,
/*155*/ TBOPER, TBLACK, TWHITE, TRED, TGREEN,
diff --git a/starmath/inc/starmath.hrc b/starmath/inc/starmath.hrc
index f7aa0f21f03f..4d7509bd8dfd 100755
--- a/starmath/inc/starmath.hrc
+++ b/starmath/inc/starmath.hrc
@@ -390,6 +390,7 @@
#define RID_UPARROW (RID_APP_START + 2018)
#define RID_DOWNARROW (RID_APP_START + 2019)
#define RID_EXISTS (RID_APP_START + 1608)
+#define RID_NOTEXISTS (RID_APP_START + 1618)
#define RID_FORALL (RID_APP_START + 1612)
// new menue resource ID's
diff --git a/starmath/inc/types.hxx b/starmath/inc/types.hxx
index 8353f6e10299..d3f30d50f20a 100644
--- a/starmath/inc/types.hxx
+++ b/starmath/inc/types.hxx
@@ -120,6 +120,7 @@ enum MathSymbol
MS_IN = (sal_Unicode) 0x2208,
MS_NOTIN = (sal_Unicode) 0x2209,
MS_EXISTS = (sal_Unicode) 0x2203,
+ MS_NOTEXISTS = (sal_Unicode) 0x2204,
MS_BACKEPSILON = (sal_Unicode) 0x220D,
MS_ALEPH = (sal_Unicode) 0x2135,
MS_IM = (sal_Unicode) 0x2111,