summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-18 10:53:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-18 10:55:23 +0100
commit6759faa1e65c311b07b65e64276cd9f3a9480004 (patch)
tree6267fc82ba552379fa22d9bf8ec17c9a66ced660 /include
parent6891ed67285aec21a0e761d129910bd236eb039e (diff)
sal_Bool -> bool fixup
Change-Id: Id1d838fe4316bbc0e1137d395bb15db3585aed84
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/basicio.hxx3
-rw-r--r--include/comphelper/logging.hxx1
2 files changed, 4 insertions, 0 deletions
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<stario::XObjectInputStream>& operator >> (const staruno::Reference<stario::XObjectInputStream>& _rxInStream, bool& _rVal);
COMPHELPER_DLLPUBLIC const staruno::Reference<stario::XObjectOutputStream>& operator << (const staruno::Reference<stario::XObjectOutputStream>& _rxOutStream, bool _bVal);
+void operator <<(
+ css::uno::Reference<css::io::XObjectOutputStream> const &, sal_Bool)
+ SAL_DELETED_FUNCTION;
// OUString
COMPHELPER_DLLPUBLIC const staruno::Reference<stario::XObjectInputStream>& operator >> (const staruno::Reference<stario::XObjectInputStream>& _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