Kaydet (Commit) 18d0f4c7 authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: Idfdfc19ac80797ef7185425c7929db3fc2e9e1a5
üst 3dffe225
...@@ -166,7 +166,7 @@ inline bool ScUnoConversion::Contains( ...@@ -166,7 +166,7 @@ inline bool ScUnoConversion::Contains(
(rApiOuter.StartRow <= rApiInner.StartRow) && (rApiInner.EndRow <= rApiOuter.EndRow); (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& rApiAddress1,
const ::com::sun::star::table::CellAddress& rApiAddress2 ) const ::com::sun::star::table::CellAddress& rApiAddress2 )
{ {
...@@ -176,14 +176,14 @@ inline sal_Bool operator==( ...@@ -176,14 +176,14 @@ inline sal_Bool operator==(
(rApiAddress1.Sheet == rApiAddress2.Sheet); (rApiAddress1.Sheet == rApiAddress2.Sheet);
} }
inline sal_Bool operator!=( inline bool operator!=(
const ::com::sun::star::table::CellAddress& rApiAddress1, const ::com::sun::star::table::CellAddress& rApiAddress1,
const ::com::sun::star::table::CellAddress& rApiAddress2 ) const ::com::sun::star::table::CellAddress& rApiAddress2 )
{ {
return !(rApiAddress1 == rApiAddress2); return !(rApiAddress1 == rApiAddress2);
} }
inline sal_Bool operator==( inline bool operator==(
const ::com::sun::star::table::CellRangeAddress& rApiRange1, const ::com::sun::star::table::CellRangeAddress& rApiRange1,
const ::com::sun::star::table::CellRangeAddress& rApiRange2 ) const ::com::sun::star::table::CellRangeAddress& rApiRange2 )
{ {
...@@ -195,7 +195,7 @@ inline sal_Bool operator==( ...@@ -195,7 +195,7 @@ inline sal_Bool operator==(
(rApiRange1.Sheet == rApiRange2.Sheet); (rApiRange1.Sheet == rApiRange2.Sheet);
} }
inline sal_Bool operator!=( inline bool operator!=(
const ::com::sun::star::table::CellRangeAddress& rApiRange1, const ::com::sun::star::table::CellRangeAddress& rApiRange1,
const ::com::sun::star::table::CellRangeAddress& rApiRange2 ) const ::com::sun::star::table::CellRangeAddress& rApiRange2 )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment