summaryrefslogtreecommitdiff
path: root/include/unotools/streamwrap.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-19 12:30:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-19 12:47:07 +0100
commit973b47a336b239cc92f1789013d28e5bd55f859f (patch)
tree6481f2803208409896aecf6745239cf07953baab /include/unotools/streamwrap.hxx
parent9ad3fc29dd98167c35fcb599da0b4e764ddf04dd (diff)
unotools: sal_Bool -> bool
Change-Id: I8051c0756e0474a5b4f748e0aa15a9922e82ea97
Diffstat (limited to 'include/unotools/streamwrap.hxx')
-rw-r--r--include/unotools/streamwrap.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/unotools/streamwrap.hxx b/include/unotools/streamwrap.hxx
index 7060742afba9..7b9864694570 100644
--- a/include/unotools/streamwrap.hxx
+++ b/include/unotools/streamwrap.hxx
@@ -49,15 +49,15 @@ class UNOTOOLS_DLLPUBLIC OInputStreamWrapper : public InputStreamWrapper_Base
protected:
::osl::Mutex m_aMutex;
SvStream* m_pSvStream;
- sal_Bool m_bSvStreamOwner : 1;
+ bool m_bSvStreamOwner : 1;
OInputStreamWrapper()
- { m_pSvStream = 0; m_bSvStreamOwner = sal_False; }
- void SetStream(SvStream* _pStream, sal_Bool bOwner )
+ { m_pSvStream = 0; m_bSvStreamOwner = false; }
+ void SetStream(SvStream* _pStream, bool bOwner )
{ m_pSvStream = _pStream; m_bSvStreamOwner = bOwner; }
public:
OInputStreamWrapper(SvStream& _rStream);
- OInputStreamWrapper(SvStream* pStream, sal_Bool bOwner=sal_False);
+ OInputStreamWrapper(SvStream* pStream, bool bOwner=false);
virtual ~OInputStreamWrapper();
// stario::XInputStream
@@ -88,7 +88,7 @@ protected:
OSeekableInputStreamWrapper() {}
public:
OSeekableInputStreamWrapper(SvStream& _rStream);
- OSeekableInputStreamWrapper(SvStream* _pStream, sal_Bool _bOwner = sal_False);
+ OSeekableInputStreamWrapper(SvStream* _pStream, bool _bOwner = false);
// XSeekable
virtual void SAL_CALL seek( sal_Int64 _nLocation ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);