summaryrefslogtreecommitdiff
path: root/starmath/source/smdetect.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/smdetect.cxx
parent7e9bb77c356e3888e4bf697f4ecd69e642211c75 (diff)
starmath: sal_Bool->bool
Change-Id: I09e833765294937a75feb5cdd92cce4aa8373c24
Diffstat (limited to 'starmath/source/smdetect.cxx')
-rw-r--r--starmath/source/smdetect.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/starmath/source/smdetect.cxx b/starmath/source/smdetect.cxx
index 14e0a39a595b..c3c3d6f8c320 100644
--- a/starmath/source/smdetect.cxx
+++ b/starmath/source/smdetect.cxx
@@ -91,11 +91,11 @@ OUString SAL_CALL SmFilterDetect::detect( Sequence< PropertyValue >& lDescriptor
// opening as template is done when a parameter tells to do so and a template filter can be detected
// (otherwise no valid filter would be found) or if the detected filter is a template filter and
// there is no parameter that forbids to open as template
- sal_Bool bOpenAsTemplate = sal_False;
- sal_Bool bWasReadOnly = sal_False, bReadOnly = sal_False;
+ bool bOpenAsTemplate = false;
+ bool bWasReadOnly = false, bReadOnly = false;
- sal_Bool bRepairPackage = sal_False;
- sal_Bool bRepairAllowed = sal_False;
+ bool bRepairPackage = false;
+ bool bRepairAllowed = false;
bool bDeepDetection = false;
// now some parameters that can already be in the array, but may be overwritten or new inserted here
@@ -404,7 +404,7 @@ OUString SAL_CALL SmFilterDetect::detect( Sequence< PropertyValue >& lDescriptor
lDescriptor[nPropertyCount].Value <<= bRepairAllowed;
nPropertyCount++;
- bOpenAsTemplate = sal_True;
+ bOpenAsTemplate = true;
// TODO/LATER: set progress bar that should be used
}