summaryrefslogtreecommitdiffstats
path: root/include/comphelper/extract.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-16 22:51:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:19 +0100
commit05f742d28b3786f44781af5b069c05c16b84decd (patch)
treedacb340f99ad4e47d20557eee04e6f69f5d15721 /include/comphelper/extract.hxx
parentucbhelper: sal_Bool -> bool (diff)
downloadcore-05f742d28b3786f44781af5b069c05c16b84decd.tar.gz
core-05f742d28b3786f44781af5b069c05c16b84decd.zip
comphelper: sal_Bool -> bool
Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
Diffstat (limited to 'include/comphelper/extract.hxx')
-rw-r--r--include/comphelper/extract.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/comphelper/extract.hxx b/include/comphelper/extract.hxx
index 04be9ec3f55b..6d401e66ae16 100644
--- a/include/comphelper/extract.hxx
+++ b/include/comphelper/extract.hxx
@@ -54,12 +54,12 @@ inline ::com::sun::star::uno::Any SAL_CALL int2enum(
* @param rAny enum or int
* @param sal_True if enum or int value was set else sal_False.
*/
-inline sal_Bool SAL_CALL enum2int( sal_Int32 & rnEnum, const ::com::sun::star::uno::Any & rAny )
+inline bool SAL_CALL enum2int( sal_Int32 & rnEnum, const ::com::sun::star::uno::Any & rAny )
{
if (rAny.getValueTypeClass() == ::com::sun::star::uno::TypeClass_ENUM)
{
rnEnum = * reinterpret_cast< const int * >( rAny.getValue() );
- return sal_True;
+ return true;
}
return rAny >>= rnEnum;
@@ -110,7 +110,7 @@ inline ::com::sun::star::uno::Any SAL_CALL enum2any( E eEnum )
* @return sal_True if any reference (including the null ref) was retrieved from any else sal_False.
*/
template< class T >
-inline sal_Bool SAL_CALL extractInterface(
+inline bool SAL_CALL extractInterface(
::com::sun::star::uno::Reference< T > & rxOut,
const ::com::sun::star::uno::Any & rAny )
{
@@ -124,7 +124,7 @@ inline sal_Bool SAL_CALL extractInterface(
* a ::com::sun::star::lang::IllegalArgumentException is thrown
*
*/
-inline sal_Bool SAL_CALL any2bool( const ::com::sun::star::uno::Any & rAny )
+inline bool SAL_CALL any2bool( const ::com::sun::star::uno::Any & rAny )
throw( ::com::sun::star::lang::IllegalArgumentException )
{
if (rAny.getValueTypeClass() == ::com::sun::star::uno::TypeClass_BOOLEAN)
@@ -146,7 +146,7 @@ inline sal_Bool SAL_CALL any2bool( const ::com::sun::star::uno::Any & rAny )
* @DEPRECATED : use makeAny< sal_Bool >()
*
*/
-inline ::com::sun::star::uno::Any SAL_CALL bool2any( sal_Bool bBool )
+inline ::com::sun::star::uno::Any SAL_CALL bool2any( bool bBool )
{
return ::com::sun::star::uno::Any( &bBool, ::getCppuBooleanType() );
}