From 18d0f4c714e71b3ebdd697a3759a74a20a25344f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 17 Jan 2014 16:13:23 +0200 Subject: sal_Bool->bool Change-Id: Idfdfc19ac80797ef7185425c7929db3fc2e9e1a5 --- sc/inc/convuno.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sc') 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 ) { -- cgit