diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-02-19 17:31:12 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-02-19 11:43:13 +0000 |
commit | 75da70ccbf7946d3c8de2572d98c2f9cf534b751 (patch) | |
tree | 46cace1d39be91721b2961b4b0e44b6fd403512c /starmath/source/mathmlexport.cxx | |
parent | 778e9a65bf5af07c4caeff969a0324e43a78e66b (diff) |
starmath: Avoid C-style cast
Change-Id: I96efea344dc4ec5c1f20060bb51ea5e853113c9c
Reviewed-on: https://gerrit.libreoffice.org/22497
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'starmath/source/mathmlexport.cxx')
-rw-r--r-- | starmath/source/mathmlexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/mathmlexport.cxx b/starmath/source/mathmlexport.cxx index b022c3a67c12..b80af3fa80ee 100644 --- a/starmath/source/mathmlexport.cxx +++ b/starmath/source/mathmlexport.cxx @@ -86,7 +86,7 @@ sal_Unicode ConvertMathToMathML( sal_Unicode cChar ) if (IsInPrivateUseArea( cChar )) { SAL_WARN("starmath", "Error: private use area characters should no longer be in use!" ); - cRes = (sal_Unicode) '@'; // just some character that should easily be notice as odd in the context + cRes = sal_Unicode('@'); // just some character that should easily be notice as odd in the context } return cRes; } |