diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-03-08 23:22:37 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2017-03-09 01:55:25 +0000 |
commit | 945f0eb76c645a27c5b19466ed7a0b2bfc6cb9c5 (patch) | |
tree | cf39331d93b87baf4edbd8b8c9581e103edc7991 /starmath/inc | |
parent | 3daa6c66eb9a4c334d6f72a8fd4bb09d7360a913 (diff) |
starmath: Prepare messsages for all parsing errors
and kill the unhelpful "unknown" one.
Change-Id: I3137f7e363caeb64d285aacd2e56446148d85353
Reviewed-on: https://gerrit.libreoffice.org/34977
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath/inc')
-rw-r--r-- | starmath/inc/starmath.hrc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/starmath/inc/starmath.hrc b/starmath/inc/starmath.hrc index 1d83abfe61ad..a09ebeca22d9 100644 --- a/starmath/inc/starmath.hrc +++ b/starmath/inc/starmath.hrc @@ -126,13 +126,17 @@ #define STR_TEAL (RID_APP_START + 848) #define RID_ERR_IDENT (RID_APP_START + 920) -#define RID_ERR_UNKNOWN (RID_APP_START + 921) -#define RID_ERR_UNEXPECTEDCHARACTER (RID_APP_START + 922) +#define RID_ERR_UNEXPECTEDCHARACTER (RID_APP_START + 921) +#define RID_ERR_UNEXPECTEDTOKEN (RID_APP_START + 922) #define RID_ERR_LGROUPEXPECTED (RID_APP_START + 923) #define RID_ERR_RGROUPEXPECTED (RID_APP_START + 924) #define RID_ERR_LBRACEEXPECTED (RID_APP_START + 925) #define RID_ERR_RBRACEEXPECTED (RID_APP_START + 926) -// blank: 927 - 931 +#define RID_ERR_PARENTMISMATCH (RID_APP_START + 927) +#define RID_ERR_FONTEXPECTED (RID_APP_START + 928) +#define RID_ERR_SIZEEXPECTED (RID_APP_START + 929) +#define RID_ERR_DOUBLEALIGN (RID_APP_START + 930) +#define RID_ERR_DOUBLESUBSUPSCRIPT (RID_APP_START + 931) #define RID_ERR_POUNDEXPECTED (RID_APP_START + 932) #define RID_ERR_COLOREXPECTED (RID_APP_START + 933) // blank: 934 - 935 |