summaryrefslogtreecommitdiff
path: root/starmath/inc/token.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-22 17:01:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-22 18:04:41 +0100
commit8b550895b3007eecfbcf02573d8eb5ed57a45c62 (patch)
tree4d9245a7b96276df37fd8ca58fdd9efa490404da /starmath/inc/token.hxx
parent011dae60e2170f71ddf647d5ea2b844432480dc7 (diff)
sal_Char->char in sot..store
Change-Id: Ia133c1a7549d81f2e88e34ab7e6c9ea578c745ae Reviewed-on: https://gerrit.libreoffice.org/85702 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath/inc/token.hxx')
-rw-r--r--starmath/inc/token.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/inc/token.hxx b/starmath/inc/token.hxx
index 8abe85e61858..786b4ff31d75 100644
--- a/starmath/inc/token.hxx
+++ b/starmath/inc/token.hxx
@@ -121,14 +121,14 @@ struct SmToken
SmToken();
SmToken(SmTokenType eTokenType,
sal_Unicode cMath,
- const sal_Char* pText,
+ const char* pText,
TG nTokenGroup = TG::NONE,
sal_uInt16 nTokenLevel = 0);
};
struct SmTokenTableEntry
{
- const sal_Char* pIdent;
+ const char* pIdent;
SmTokenType const eType;
sal_Unicode const cMathChar;
TG const nGroup;