summaryrefslogtreecommitdiff
path: root/include/com/sun/star/uno/Sequence.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/com/sun/star/uno/Sequence.h')
-rw-r--r--include/com/sun/star/uno/Sequence.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/com/sun/star/uno/Sequence.h b/include/com/sun/star/uno/Sequence.h
index fe5c16c0bbe7..ff52ee30fd01 100644
--- a/include/com/sun/star/uno/Sequence.h
+++ b/include/com/sun/star/uno/Sequence.h
@@ -140,7 +140,7 @@ public:
@return true, if elements count is greater than zero
*/
- inline sal_Bool SAL_CALL hasElements() const SAL_THROW(())
+ inline bool SAL_CALL hasElements() const SAL_THROW(())
{ return (_pSequence->nElements > 0); }
/** Gets a pointer to elements array for reading.
@@ -217,7 +217,7 @@ public:
@param rSeq another sequence of same type (right side)
@return true if both sequences are equal, false otherwise
*/
- inline sal_Bool SAL_CALL operator == ( const Sequence< E > & rSeq ) const
+ inline bool SAL_CALL operator == ( const Sequence< E > & rSeq ) const
SAL_THROW(());
/** Unequality operator: Compares two sequences.
@@ -225,7 +225,7 @@ public:
@param rSeq another sequence of same type (right side)
@return false if both sequences are equal, true otherwise
*/
- inline sal_Bool SAL_CALL operator != ( const Sequence< E > & rSeq ) const
+ inline bool SAL_CALL operator != ( const Sequence< E > & rSeq ) const
SAL_THROW(());
/** Reallocates sequence to new length.