summaryrefslogtreecommitdiff
path: root/starmath/source/eqnolefilehdr.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-24 12:22:08 +0200
committerNoel Grandin <noel@peralex.com>2014-04-30 08:43:41 +0200
commit4c73963171b1a7a837e4bfc75ae4e0303af7d117 (patch)
tree1a78e9dd12dc66c28865500dc24ae72bbfaab461 /starmath/source/eqnolefilehdr.cxx
parent7e9bb77c356e3888e4bf697f4ecd69e642211c75 (diff)
starmath: sal_Bool->bool
Change-Id: I09e833765294937a75feb5cdd92cce4aa8373c24
Diffstat (limited to 'starmath/source/eqnolefilehdr.cxx')
-rw-r--r--starmath/source/eqnolefilehdr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/source/eqnolefilehdr.cxx b/starmath/source/eqnolefilehdr.cxx
index 32dd3d57aeaa..75d180f1587b 100644
--- a/starmath/source/eqnolefilehdr.cxx
+++ b/starmath/source/eqnolefilehdr.cxx
@@ -24,10 +24,10 @@
-sal_Bool GetMathTypeVersion( SotStorage* pStor, sal_uInt8 &nVersion )
+bool GetMathTypeVersion( SotStorage* pStor, sal_uInt8 &nVersion )
{
sal_uInt8 nVer = 0;
- sal_Bool bSuccess = sal_False;
+ bool bSuccess = false;
// code snippet copied from MathType::Parse
@@ -47,7 +47,7 @@ sal_Bool GetMathTypeVersion( SotStorage* pStor, sal_uInt8 &nVersion )
if (!pS->GetError())
{
nVersion = nVer;
- bSuccess = sal_True;
+ bSuccess = true;
}
return bSuccess;
}