summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-01-17 16:13:23 +0200
committerNoel Grandin <noel@peralex.com>2014-01-20 13:13:52 +0200
commit18d0f4c714e71b3ebdd697a3759a74a20a25344f (patch)
tree36a79188174fd7b45d211644d26ded53d6460a65 /sc
parent3dffe225845a4f1646684ca2e688c5275993d2f7 (diff)
sal_Bool->bool
Change-Id: Idfdfc19ac80797ef7185425c7929db3fc2e9e1a5
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/convuno.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/convuno.hxx b/sc/inc/convuno.hxx
index b30067b6f231..62fc803f90b9 100644
--- a/sc/inc/convuno.hxx
+++ b/sc/inc/convuno.hxx
@@ -166,7 +166,7 @@ inline bool ScUnoConversion::Contains(
(rApiOuter.StartRow <= rApiInner.StartRow) && (rApiInner.EndRow <= rApiOuter.EndRow);
}
-inline sal_Bool operator==(
+inline bool operator==(
const ::com::sun::star::table::CellAddress& rApiAddress1,
const ::com::sun::star::table::CellAddress& rApiAddress2 )
{
@@ -176,14 +176,14 @@ inline sal_Bool operator==(
(rApiAddress1.Sheet == rApiAddress2.Sheet);
}
-inline sal_Bool operator!=(
+inline bool operator!=(
const ::com::sun::star::table::CellAddress& rApiAddress1,
const ::com::sun::star::table::CellAddress& rApiAddress2 )
{
return !(rApiAddress1 == rApiAddress2);
}
-inline sal_Bool operator==(
+inline bool operator==(
const ::com::sun::star::table::CellRangeAddress& rApiRange1,
const ::com::sun::star::table::CellRangeAddress& rApiRange2 )
{
@@ -195,7 +195,7 @@ inline sal_Bool operator==(
(rApiRange1.Sheet == rApiRange2.Sheet);
}
-inline sal_Bool operator!=(
+inline bool operator!=(
const ::com::sun::star::table::CellRangeAddress& rApiRange1,
const ::com::sun::star::table::CellRangeAddress& rApiRange2 )
{