summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/gvfs
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-22 21:20:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-23 03:38:49 +0000
commit0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch)
tree5024cba9f9ea5e3b23ea26025323f6aef39488d0 /ucb/source/ucp/gvfs
parentb81ac16e65b311d6e43c05c22c65d2040c9d7e04 (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 'ucb/source/ucp/gvfs')
-rw-r--r--ucb/source/ucp/gvfs/gvfs_stream.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/ucb/source/ucp/gvfs/gvfs_stream.cxx b/ucb/source/ucp/gvfs/gvfs_stream.cxx
index 080d484dfb47..8fc6898bea7b 100644
--- a/ucb/source/ucp/gvfs/gvfs_stream.cxx
+++ b/ucb/source/ucp/gvfs/gvfs_stream.cxx
@@ -61,9 +61,9 @@ Any Stream::queryInterface( const Type &type )
return aRet.hasValue() ? aRet : OWeakObject::queryInterface( type );
}
-// -------------------------------------------------------------------
+
// XStream
-// -------------------------------------------------------------------
+
com::sun::star::uno::Reference< com::sun::star::io::XInputStream > SAL_CALL
Stream::getInputStream( )
@@ -87,9 +87,9 @@ Stream::getOutputStream( )
return Reference< XOutputStream >( this );
}
-// -------------------------------------------------------------------
+
// XInputStream
-// -------------------------------------------------------------------
+
sal_Int32 SAL_CALL Stream::readBytes(
Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead )
@@ -184,9 +184,9 @@ void SAL_CALL Stream::closeInput( void )
closeStream();
}
-// -------------------------------------------------------------------
+
// XSeekable
-// -------------------------------------------------------------------
+
void SAL_CALL Stream::seek( sal_Int64 location )
throw( ::com::sun::star::lang::IllegalArgumentException,
@@ -236,9 +236,9 @@ sal_Int64 SAL_CALL Stream::getLength()
}
}
-// -------------------------------------------------------------------
+
// XTruncate
-// -------------------------------------------------------------------
+
void SAL_CALL Stream::truncate( void )
throw( com::sun::star::io::IOException,
@@ -250,9 +250,9 @@ void SAL_CALL Stream::truncate( void )
throwOnError( gnome_vfs_truncate_handle( m_handle, 0 ) );
}
-// -------------------------------------------------------------------
+
// XOutputStream
-// -------------------------------------------------------------------
+
void SAL_CALL Stream::writeBytes( const com::sun::star::uno::Sequence< sal_Int8 >& aData )
throw( com::sun::star::io::NotConnectedException,
@@ -298,9 +298,9 @@ void SAL_CALL Stream::closeOutput( void )
closeStream();
}
-// -------------------------------------------------------------------
+
// Misc.
-// -------------------------------------------------------------------
+
void Stream::closeStream( void )
throw( ::com::sun::star::io::NotConnectedException,