diff options
author | vincent <vincentgsoc2013@gmail.com> | 2013-03-22 22:11:49 +0800 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2013-03-25 14:12:42 +0000 |
commit | 002a0d91e4b0d8214656741192ec3260a8764a73 (patch) | |
tree | 76c63ea121df7875577b17e9c72878fbd75f608a /starmath | |
parent | bdb87236dcbc1187b15e1a457e130ff997b0949b (diff) |
Fix spelling errors and typos: 'unkown' change to 'unknown'
Change-Id: Ia3ff77d2b99c9ef6c4c9b510bb30f349592c0b94
Reviewed-on: https://gerrit.libreoffice.org/3030
Reviewed-by: Thorsten Behrens <tbehrens@suse.com>
Tested-by: Thorsten Behrens <tbehrens@suse.com>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/inc/starmath.hrc | 2 | ||||
-rw-r--r-- | starmath/source/parse.cxx | 2 | ||||
-rw-r--r-- | starmath/source/smres.src | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/starmath/inc/starmath.hrc b/starmath/inc/starmath.hrc index 64357f9d4aaa..ed1eb26ce920 100644 --- a/starmath/inc/starmath.hrc +++ b/starmath/inc/starmath.hrc @@ -117,7 +117,7 @@ #define STR_CMDBOXWINDOW (RID_APP_START + 825) #define RID_ERR_IDENT (RID_APP_START + 920) -#define RID_ERR_UNKOWN (RID_APP_START + 921) +#define RID_ERR_UNKNOWN (RID_APP_START + 921) #define RID_ERR_UNEXPECTEDCHARACTER (RID_APP_START + 922) #define RID_ERR_LGROUPEXPECTED (RID_APP_START + 923) #define RID_ERR_RGROUPEXPECTED (RID_APP_START + 924) diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx index 95bda3b7240d..b05345d47ebd 100644 --- a/starmath/source/parse.cxx +++ b/starmath/source/parse.cxx @@ -2505,7 +2505,7 @@ size_t SmParser::AddError(SmParseError Type, SmNode *pNode) case PE_RIGHT_EXPECTED: nRID = RID_ERR_RIGHTEXPECTED; break; default: - nRID = RID_ERR_UNKOWN; + nRID = RID_ERR_UNKNOWN; } pErrDesc->Text += SM_RESSTR(nRID); diff --git a/starmath/source/smres.src b/starmath/source/smres.src index 3fd07cf58975..0e5ebf5f076a 100644 --- a/starmath/source/smres.src +++ b/starmath/source/smres.src @@ -1611,7 +1611,7 @@ String RID_ERR_IDENT Text [ en-US ] = "ERROR : " ; }; -String RID_ERR_UNKOWN +String RID_ERR_UNKNOWN { Text [ en-US ] = "Unknown error occurred" ; }; |