From 6759faa1e65c311b07b65e64276cd9f3a9480004 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 18 Feb 2014 10:53:46 +0100 Subject: sal_Bool -> bool fixup Change-Id: Id1d838fe4316bbc0e1137d395bb15db3585aed84 --- include/comphelper/basicio.hxx | 3 +++ include/comphelper/logging.hxx | 1 + 2 files changed, 4 insertions(+) (limited to 'include') diff --git a/include/comphelper/basicio.hxx b/include/comphelper/basicio.hxx index 7b0c35410825..35b9bae841f8 100644 --- a/include/comphelper/basicio.hxx +++ b/include/comphelper/basicio.hxx @@ -36,6 +36,9 @@ namespace starawt = ::com::sun::star::awt; // bool COMPHELPER_DLLPUBLIC const staruno::Reference& operator >> (const staruno::Reference& _rxInStream, bool& _rVal); COMPHELPER_DLLPUBLIC const staruno::Reference& operator << (const staruno::Reference& _rxOutStream, bool _bVal); +void operator <<( + css::uno::Reference const &, sal_Bool) + SAL_DELETED_FUNCTION; // OUString COMPHELPER_DLLPUBLIC const staruno::Reference& operator >> (const staruno::Reference& _rxInStream, OUString& _rStr); diff --git a/include/comphelper/logging.hxx b/include/comphelper/logging.hxx index ce7b829e3779..c243c2be2544 100644 --- a/include/comphelper/logging.hxx +++ b/include/comphelper/logging.hxx @@ -58,6 +58,7 @@ namespace comphelper inline OUString convertLogArgToString( sal_Int16 _nValue ) { return OUString::number( _nValue ); } inline OUString convertLogArgToString( sal_Unicode _nValue ) { return OUString( _nValue ); } inline OUString convertLogArgToString( bool _bValue ) { return OUString::boolean( _bValue ); } + void convertLogArgToString(sal_Bool) SAL_DELETED_FUNCTION; } } // namespace log::convert -- cgit