summaryrefslogtreecommitdiff
path: root/connectivity/source/sdbcx/VDescriptor.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 /connectivity/source/sdbcx/VDescriptor.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 'connectivity/source/sdbcx/VDescriptor.cxx')
-rw-r--r--connectivity/source/sdbcx/VDescriptor.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/connectivity/source/sdbcx/VDescriptor.cxx b/connectivity/source/sdbcx/VDescriptor.cxx
index 9993dd6f3020..153a14401b03 100644
--- a/connectivity/source/sdbcx/VDescriptor.cxx
+++ b/connectivity/source/sdbcx/VDescriptor.cxx
@@ -35,7 +35,7 @@ namespace connectivity
// =========================================================================
// = ODescriptor
// =========================================================================
- // -------------------------------------------------------------------------
+
ODescriptor::ODescriptor(::cppu::OBroadcastHelper& _rBHelper,sal_Bool _bCase, sal_Bool _bNew)
:ODescriptor_PBASE(_rBHelper)
,m_aCase(_bCase)
@@ -43,7 +43,7 @@ namespace connectivity
{
}
- // -------------------------------------------------------------------------
+
// com::sun::star::lang::XUnoTunnel
sal_Int64 SAL_CALL ODescriptor::getSomething( const Sequence< sal_Int8 >& rId ) throw(RuntimeException)
{
@@ -52,7 +52,7 @@ namespace connectivity
: 0;
}
- // -----------------------------------------------------------------------------
+
ODescriptor* ODescriptor::getImplementation( const Reference< XInterface >& _rxSomeComp )
{
Reference< XUnoTunnel > xTunnel( _rxSomeComp, UNO_QUERY );
@@ -61,7 +61,7 @@ namespace connectivity
return NULL;
}
- // -----------------------------------------------------------------------------
+
namespace
{
struct ResetROAttribute : public ::std::unary_function< Property, void >
@@ -80,7 +80,7 @@ namespace connectivity
};
}
- // -----------------------------------------------------------------------------
+
::cppu::IPropertyArrayHelper* ODescriptor::doCreateArrayHelper() const
{
Sequence< Property > aProperties;
@@ -94,14 +94,14 @@ namespace connectivity
return new ::cppu::OPropertyArrayHelper( aProperties );
}
- // -----------------------------------------------------------------------------
+
sal_Bool ODescriptor::isNew( const Reference< XInterface >& _rxDescriptor )
{
ODescriptor* pImplementation = getImplementation( _rxDescriptor );
return pImplementation != NULL ? pImplementation->isNew() : sal_False;
}
- // -----------------------------------------------------------------------------
+
Sequence< sal_Int8 > ODescriptor::getUnoTunnelImplementationId()
{
static ::cppu::OImplementationId * pId = 0;
@@ -117,20 +117,20 @@ namespace connectivity
return pId->getImplementationId();
}
- // -----------------------------------------------------------------------------
+
Any SAL_CALL ODescriptor::queryInterface( const Type & rType ) throw(RuntimeException)
{
Any aRet = ::cppu::queryInterface(rType,static_cast< XUnoTunnel*> (this));
return aRet.hasValue() ? aRet : ODescriptor_PBASE::queryInterface(rType);
}
- // -----------------------------------------------------------------------------
+
void ODescriptor::setNew(sal_Bool _bNew)
{
m_bNew = _bNew;
}
- // -----------------------------------------------------------------------------
+
Sequence< Type > SAL_CALL ODescriptor::getTypes( ) throw(RuntimeException)
{
::cppu::OTypeCollection aTypes( ::getCppuType( (const Reference< XMultiPropertySet > *)0 ),