diff options
author | Oliver Bolte <obo@openoffice.org> | 2003-09-04 09:52:05 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2003-09-04 09:52:05 +0000 |
commit | ec8ee84f49aef7c203a442f0391f19cd0602d5ed (patch) | |
tree | 905e4501d7a4adbdae5c3c5508c375152b496ee1 /cppu | |
parent | bce2e64145217c830451a25839910ffa9c77f62b (diff) |
INTEGRATION: CWS cliuno01 (1.8.30); FILE MERGED
2003/09/01 16:51:52 dbo 1.8.30.1: #107130# C++ bool
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/inc/com/sun/star/uno/Type.hxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cppu/inc/com/sun/star/uno/Type.hxx b/cppu/inc/com/sun/star/uno/Type.hxx index 41ff5837911d..f99fc4531abc 100644 --- a/cppu/inc/com/sun/star/uno/Type.hxx +++ b/cppu/inc/com/sun/star/uno/Type.hxx @@ -2,9 +2,9 @@ * * $RCSfile: Type.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: dbo $ $Date: 2002-08-21 09:19:08 $ + * last change: $Author: obo $ $Date: 2003-09-04 10:52:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -174,6 +174,13 @@ inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( const sal_Bool ::typelib_static_type_getByTypeClass( typelib_TypeClass_BOOLEAN ) ); } +inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( + bool const * ) SAL_THROW( () ) +{ + return * reinterpret_cast< const ::com::sun::star::uno::Type * >( + ::typelib_static_type_getByTypeClass( typelib_TypeClass_BOOLEAN ) ); +} + inline const ::com::sun::star::uno::Type & SAL_CALL getCharCppuType() SAL_THROW( () ) { return * reinterpret_cast< const ::com::sun::star::uno::Type * >( |