summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ext/ucpext_datasupplier.cxx
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/ext/ucpext_datasupplier.cxx
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/ext/ucpext_datasupplier.cxx')
-rw-r--r--ucb/source/ucp/ext/ucpext_datasupplier.cxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/ucb/source/ucp/ext/ucpext_datasupplier.cxx b/ucb/source/ucp/ext/ucpext_datasupplier.cxx
index 3c2d80ef34ca..20e9409ef68d 100644
--- a/ucb/source/ucp/ext/ucpext_datasupplier.cxx
+++ b/ucb/source/ucp/ext/ucpext_datasupplier.cxx
@@ -98,7 +98,7 @@ namespace ucb { namespace ucp { namespace ext
~DataSupplier_Impl();
};
- //------------------------------------------------------------------------------------------------------------------
+
DataSupplier_Impl::~DataSupplier_Impl()
{
}
@@ -124,7 +124,7 @@ namespace ucb { namespace ucp { namespace ext
//==================================================================================================================
//= DataSupplier
//==================================================================================================================
- //------------------------------------------------------------------------------------------------------------------
+
DataSupplier::DataSupplier( const Reference< XComponentContext >& rxContext,
const ::rtl::Reference< Content >& i_rContent,
const sal_Int32 i_nOpenMode )
@@ -132,7 +132,7 @@ namespace ucb { namespace ucp { namespace ext
{
}
- //------------------------------------------------------------------------------------------------------------------
+
void DataSupplier::fetchData()
{
try
@@ -195,12 +195,12 @@ namespace ucb { namespace ucp { namespace ext
}
}
- //------------------------------------------------------------------------------------------------------------------
+
DataSupplier::~DataSupplier()
{
}
- //------------------------------------------------------------------------------------------------------------------
+
OUString DataSupplier::queryContentIdentifierString( sal_uInt32 i_nIndex )
{
::osl::Guard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
@@ -216,7 +216,7 @@ namespace ucb { namespace ucp { namespace ext
return OUString();
}
- //------------------------------------------------------------------------------------------------------------------
+
Reference< XContentIdentifier > DataSupplier::queryContentIdentifier( sal_uInt32 i_nIndex )
{
::osl::Guard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
@@ -239,7 +239,7 @@ namespace ucb { namespace ucp { namespace ext
return Reference< XContentIdentifier >();
}
- //------------------------------------------------------------------------------------------------------------------
+
Reference< XContent > DataSupplier::queryContent( sal_uInt32 i_nIndex )
{
::osl::Guard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
@@ -271,7 +271,7 @@ namespace ucb { namespace ucp { namespace ext
return Reference< XContent >();
}
- //------------------------------------------------------------------------------------------------------------------
+
bool DataSupplier::getResult( sal_uInt32 i_nIndex )
{
::osl::ClearableGuard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
@@ -283,26 +283,26 @@ namespace ucb { namespace ucp { namespace ext
return false;
}
- //------------------------------------------------------------------------------------------------------------------
+
sal_uInt32 DataSupplier::totalCount()
{
::osl::ClearableGuard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
return m_pImpl->m_aResults.size();
}
- //------------------------------------------------------------------------------------------------------------------
+
sal_uInt32 DataSupplier::currentCount()
{
return m_pImpl->m_aResults.size();
}
- //------------------------------------------------------------------------------------------------------------------
+
bool DataSupplier::isCountFinal()
{
return true;
}
- //------------------------------------------------------------------------------------------------------------------
+
Reference< XRow > DataSupplier::queryPropertyValues( sal_uInt32 i_nIndex )
{
::osl::MutexGuard aGuard( m_pImpl->m_aMutex );
@@ -343,7 +343,7 @@ namespace ucb { namespace ucp { namespace ext
return xRow;
}
- //------------------------------------------------------------------------------------------------------------------
+
void DataSupplier::releasePropertyValues( sal_uInt32 i_nIndex )
{
::osl::Guard< ::osl::Mutex > aGuard( m_pImpl->m_aMutex );
@@ -352,12 +352,12 @@ namespace ucb { namespace ucp { namespace ext
m_pImpl->m_aResults[ i_nIndex ].xRow.clear();
}
- //------------------------------------------------------------------------------------------------------------------
+
void DataSupplier::close()
{
}
- //------------------------------------------------------------------------------------------------------------------
+
void DataSupplier::validate() throw( ResultSetException )
{
}