From 75da70ccbf7946d3c8de2572d98c2f9cf534b751 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 19 Feb 2016 17:31:12 +0900 Subject: starmath: Avoid C-style cast Change-Id: I96efea344dc4ec5c1f20060bb51ea5e853113c9c Reviewed-on: https://gerrit.libreoffice.org/22497 Tested-by: Jenkins Reviewed-by: Michael Stahl --- starmath/source/mathmlexport.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'starmath/source/mathmlexport.cxx') 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; } -- cgit