diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-22 21:20:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-23 03:38:49 +0000 |
commit | 0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch) | |
tree | 5024cba9f9ea5e3b23ea26025323f6aef39488d0 /unotools/source/ucbhelper | |
parent | b81ac16e65b311d6e43c05c22c65d2040c9d7e04 (diff) |
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb
Reviewed-on: https://gerrit.libreoffice.org/8182
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'unotools/source/ucbhelper')
-rw-r--r-- | unotools/source/ucbhelper/ucblockbytes.cxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx index 6e9d826c49e0..13907c2777b8 100644 --- a/unotools/source/ucbhelper/ucblockbytes.cxx +++ b/unotools/source/ucbhelper/ucblockbytes.cxx @@ -1228,7 +1228,7 @@ static bool _UCBOpenContentSync( return ( bAborted || bException ); } -//---------------------------------------------------------------------------- + UcbLockBytes::UcbLockBytes( UcbLockBytesHandler* pHandler ) : m_aExpireDate( DateTime::EMPTY ) , m_xInputStream (NULL) @@ -1242,7 +1242,7 @@ UcbLockBytes::UcbLockBytes( UcbLockBytesHandler* pHandler ) SetSynchronMode( true ); } -//---------------------------------------------------------------------------- + UcbLockBytes::~UcbLockBytes() { if ( !m_bDontClose ) @@ -1284,7 +1284,7 @@ Reference < XInputStream > UcbLockBytes::getInputStream() return m_xInputStream; } -//---------------------------------------------------------------------------- + bool UcbLockBytes::setStream_Impl( const Reference<XStream>& aStream ) { @@ -1350,7 +1350,7 @@ void UcbLockBytes::SetStreamValid_Impl() m_aInitialized.set(); } -//---------------------------------------------------------------------------- + void UcbLockBytes::terminate_Impl() { m_bTerminated = true; @@ -1367,13 +1367,13 @@ void UcbLockBytes::terminate_Impl() m_xHandler->Handle( UcbLockBytesHandler::DONE, this ); } -//---------------------------------------------------------------------------- + void UcbLockBytes::SetSynchronMode (bool bSynchron) { SvLockBytes::SetSynchronMode (bSynchron); } -//---------------------------------------------------------------------------- + ErrCode UcbLockBytes::ReadAt ( sal_uLong nPos, void *pBuffer, sal_uLong nCount, sal_uLong *pRead) const { if ( IsSynchronMode() ) @@ -1441,7 +1441,7 @@ ErrCode UcbLockBytes::ReadAt ( sal_uLong nPos, void *pBuffer, sal_uLong nCount, return ERRCODE_NONE; } -//---------------------------------------------------------------------------- + ErrCode UcbLockBytes::WriteAt ( sal_uLong nPos, const void *pBuffer, sal_uLong nCount, sal_uLong *pWritten) { if ( pWritten ) @@ -1480,7 +1480,7 @@ ErrCode UcbLockBytes::WriteAt ( sal_uLong nPos, const void *pBuffer, sal_uLong n return ERRCODE_NONE; } -//---------------------------------------------------------------------------- + ErrCode UcbLockBytes::Flush() const { Reference <XOutputStream > xOutputStream = getOutputStream_Impl(); @@ -1499,7 +1499,7 @@ ErrCode UcbLockBytes::Flush() const return ERRCODE_NONE; } -//---------------------------------------------------------------------------- + ErrCode UcbLockBytes::SetSize (sal_uLong nNewSize) { SvLockBytesStat aStat; @@ -1533,7 +1533,7 @@ ErrCode UcbLockBytes::SetSize (sal_uLong nNewSize) return ERRCODE_NONE; } -//---------------------------------------------------------------------------- + ErrCode UcbLockBytes::Stat( SvLockBytesStat *pStat, SvLockBytesStatFlag) const { if ( IsSynchronMode() ) @@ -1570,7 +1570,7 @@ ErrCode UcbLockBytes::Stat( SvLockBytesStat *pStat, SvLockBytesStatFlag) const return ERRCODE_NONE; } -//---------------------------------------------------------------------------- + IMPL_LINK_NOARG(UcbLockBytes, DataAvailHdl) { if ( hasInputStream_Impl() && m_xHandler.Is() ) |