From 0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf Mon Sep 17 00:00:00 2001 From: Alexander Wilms Date: Sat, 22 Feb 2014 21:20:15 +0100 Subject: Remove unneccessary comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- embeddedobj/test/mtexecutor/bitmapcreator.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'embeddedobj/test/mtexecutor/bitmapcreator.cxx') diff --git a/embeddedobj/test/mtexecutor/bitmapcreator.cxx b/embeddedobj/test/mtexecutor/bitmapcreator.cxx index 3c81ccaa41c7..1c75fd9655f7 100644 --- a/embeddedobj/test/mtexecutor/bitmapcreator.cxx +++ b/embeddedobj/test/mtexecutor/bitmapcreator.cxx @@ -26,7 +26,7 @@ using namespace ::com::sun::star; -//------------------------------------------------------------------------- + uno::Sequence< OUString > SAL_CALL VCLBitmapCreator::impl_staticGetSupportedServiceNames() { uno::Sequence< OUString > aRet(2); @@ -35,20 +35,20 @@ uno::Sequence< OUString > SAL_CALL VCLBitmapCreator::impl_staticGetSupportedServ return aRet; } -//------------------------------------------------------------------------- + OUString SAL_CALL VCLBitmapCreator::impl_staticGetImplementationName() { return OUString("com.sun.star.comp.embed.BitmapCreator"); } -//------------------------------------------------------------------------- + uno::Reference< uno::XInterface > SAL_CALL VCLBitmapCreator::impl_staticCreateSelfInstance( const uno::Reference< lang::XMultiServiceFactory >& xServiceManager ) { return uno::Reference< uno::XInterface >( *new VCLBitmapCreator( xServiceManager ) ); } -//------------------------------------------------------------------------- + uno::Reference< uno::XInterface > SAL_CALL VCLBitmapCreator::createInstance() throw ( uno::Exception, @@ -60,7 +60,7 @@ uno::Reference< uno::XInterface > SAL_CALL VCLBitmapCreator::createInstance() return aResult; } -//------------------------------------------------------------------------- + uno::Reference< uno::XInterface > SAL_CALL VCLBitmapCreator::createInstanceWithArguments( const uno::Sequence< uno::Any >& aArguments ) throw ( uno::Exception, @@ -84,7 +84,7 @@ uno::Reference< uno::XInterface > SAL_CALL VCLBitmapCreator::createInstanceWithA return aResult; } -//------------------------------------------------------------------------- + OUString SAL_CALL VCLBitmapCreator::getImplementationName() throw ( uno::RuntimeException ) { @@ -97,7 +97,7 @@ sal_Bool SAL_CALL VCLBitmapCreator::supportsService( const OUString& ServiceName return cppu::supportsService(this, ServiceName); } -//------------------------------------------------------------------------- + uno::Sequence< OUString > SAL_CALL VCLBitmapCreator::getSupportedServiceNames() throw ( uno::RuntimeException ) { -- cgit