diff options
author | Jelle van der Waa <jelle@vdwaa.nl> | 2013-08-17 23:43:14 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2013-08-27 16:11:09 +0000 |
commit | 2ec606730bc95b58390a609df0a88958869a4066 (patch) | |
tree | 9c530b3f6b200305ba224dda2d02c9bf5aca2233 /dbaccess/source/shared | |
parent | 434f3c8e7fac0644cfe1d7a15f97f0c267bac048 (diff) |
fdo#62475 removed pointless comments
Conflicts:
dbaccess/source/filter/xml/xmlfilter.cxx
dbaccess/source/ui/dlg/ConnectionPage.cxx
dbaccess/source/ui/dlg/detailpages.cxx
dbaccess/source/ui/dlg/odbcconfig.cxx
dbaccess/source/ui/querydesign/querycontroller.cxx
Change-Id: I3a05649efa3a43dd8d8fb069fc1bce14ca0a6338
Reviewed-on: https://gerrit.libreoffice.org/5484
Reviewed-by: Petr Mladek <pmladek@suse.cz>
Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'dbaccess/source/shared')
-rw-r--r-- | dbaccess/source/shared/registrationhelper.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/dbaccess/source/shared/registrationhelper.cxx b/dbaccess/source/shared/registrationhelper.cxx index 9fdaf34e006e..642241181590 100644 --- a/dbaccess/source/shared/registrationhelper.cxx +++ b/dbaccess/source/shared/registrationhelper.cxx @@ -32,7 +32,6 @@ uno::Sequence< uno::Sequence< OUString > >* OModuleRegistration::s_pSupportedSe uno::Sequence< sal_Int64 >* OModuleRegistration::s_pCreationFunctionPointers = NULL; uno::Sequence< sal_Int64 >* OModuleRegistration::s_pFactoryFunctionPointers = NULL; -//-------------------------------------------------------------------------- void OModuleRegistration::registerComponent( const OUString& _rImplementationName, const uno::Sequence< OUString >& _rServiceNames, @@ -68,7 +67,6 @@ void OModuleRegistration::registerComponent( s_pFactoryFunctionPointers->getArray()[nOldLen] = reinterpret_cast<sal_Int64>(_pFactoryFunction); } -//-------------------------------------------------------------------------- void OModuleRegistration::revokeComponent(const OUString& _rImplementationName) { if (!s_pImplementationNames) @@ -106,7 +104,6 @@ void OModuleRegistration::revokeComponent(const OUString& _rImplementationName) } } -//-------------------------------------------------------------------------- uno::Reference< uno::XInterface > OModuleRegistration::getComponentFactory( const OUString& _rImplementationName, const uno::Reference< lang::XMultiServiceFactory >& _rxServiceManager) @@ -126,10 +123,8 @@ uno::Reference< uno::XInterface > OModuleRegistration::getComponentFactory( && (s_pImplementationNames->getLength() == s_pFactoryFunctionPointers->getLength()), "OModuleRegistration::getComponentFactory : inconsistent state !"); - uno::Reference< uno::XInterface > xReturn; - sal_Int32 nLen = s_pImplementationNames->getLength(); const OUString* pImplName = s_pImplementationNames->getConstArray(); const uno::Sequence< OUString >* pServices = s_pSupportedServices->getConstArray(); @@ -155,5 +150,4 @@ uno::Reference< uno::XInterface > OModuleRegistration::getComponentFactory( return NULL; } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |