summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-27 15:29:05 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-27 15:31:01 +0200
commite15d89361e202136cb6bd096a5bad4883d457164 (patch)
treee7ef55eea57702e39f503e058d5cefb45e42882c
parentMore loplugin:simplifybool (diff)
downloadcore-e15d89361e202136cb6bd096a5bad4883d457164.tar.gz
core-e15d89361e202136cb6bd096a5bad4883d457164.zip
More loplugin:simplifybool
Change-Id: Id4c8b4c2ac064838b968bac4f24e544162a55bdf
-rw-r--r--starmath/source/document.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx
index c1fdc10ee72c..73e4fa47f2d5 100644
--- a/starmath/source/document.cxx
+++ b/starmath/source/document.cxx
@@ -727,7 +727,7 @@ bool SmDocShell::ConvertFrom(SfxMedium &rMedium)
{
// is this a MathType Storage?
MathType aEquation( aText );
- if ( true == (bSuccess = (1 == aEquation.Parse( aStorage )) ))
+ if ( (bSuccess = (1 == aEquation.Parse( aStorage )) ))
Parse();
}
}