diff options
author | Chris Sherlock <chris.sherlock@collabora.com> | 2015-03-05 19:47:27 +1100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-11 14:16:17 +0100 |
commit | 7fab8924d53001e43f9a4656ee79134f398a2016 (patch) | |
tree | fc164178e825c4d6762a8b348c322245467a8aa6 /sc | |
parent | 50d961ebf107bfd3e3a557c4da75bfec2a463408 (diff) |
sc: use constructor syntax in scfilt.component
Change-Id: I673c8daabb6438f833571b0c70df1e73e6b8d273
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/Library_scfilt.mk | 1 | ||||
-rw-r--r-- | sc/source/filter/inc/excelfilter.hxx | 3 | ||||
-rw-r--r-- | sc/source/filter/inc/ooxformulaparser.hxx | 3 | ||||
-rw-r--r-- | sc/source/filter/oox/excelfilter.cxx | 15 | ||||
-rw-r--r-- | sc/source/filter/oox/ooxformulaparser.cxx | 15 | ||||
-rw-r--r-- | sc/source/filter/services.cxx | 44 | ||||
-rw-r--r-- | sc/util/scfilt.component | 6 |
7 files changed, 23 insertions, 64 deletions
diff --git a/sc/Library_scfilt.mk b/sc/Library_scfilt.mk index d19b37903ecb..fab1700b01e4 100644 --- a/sc/Library_scfilt.mk +++ b/sc/Library_scfilt.mk @@ -218,7 +218,6 @@ $(eval $(call gb_Library_add_exception_objects,scfilt,\ sc/source/filter/oox/worksheetfragment \ sc/source/filter/oox/worksheethelper \ sc/source/filter/oox/worksheetsettings \ - sc/source/filter/services \ )) ifeq ($(ENABLE_ORCUS),TRUE) diff --git a/sc/source/filter/inc/excelfilter.hxx b/sc/source/filter/inc/excelfilter.hxx index ae5cfadb02c4..fbeea5e24c71 100644 --- a/sc/source/filter/inc/excelfilter.hxx +++ b/sc/source/filter/inc/excelfilter.hxx @@ -58,9 +58,6 @@ private: WorkbookGlobals* mpBookGlob; }; -css::uno::Reference< css::uno::XInterface > SAL_CALL ExcelFilter_create( - css::uno::Reference< css::uno::XComponentContext > const & context); - OUString SAL_CALL ExcelFilter_getImplementationName(); css::uno::Sequence< OUString > SAL_CALL ExcelFilter_getSupportedServiceNames(); diff --git a/sc/source/filter/inc/ooxformulaparser.hxx b/sc/source/filter/inc/ooxformulaparser.hxx index d9df8c13aee7..8626476bacf8 100644 --- a/sc/source/filter/inc/ooxformulaparser.hxx +++ b/sc/source/filter/inc/ooxformulaparser.hxx @@ -91,9 +91,6 @@ private: ParserImplRef mxParserImpl; /// Implementation of import parser. }; -css::uno::Reference< css::uno::XInterface > SAL_CALL OOXMLFormulaParser_create( - css::uno::Reference< css::uno::XComponentContext > const & context); - OUString SAL_CALL OOXMLFormulaParser_getImplementationName(); css::uno::Sequence< OUString > SAL_CALL OOXMLFormulaParser_getSupportedServiceNames(); diff --git a/sc/source/filter/oox/excelfilter.cxx b/sc/source/filter/oox/excelfilter.cxx index 35199e4d2ab9..00ff2bc643a4 100644 --- a/sc/source/filter/oox/excelfilter.cxx +++ b/sc/source/filter/oox/excelfilter.cxx @@ -55,12 +55,6 @@ Sequence< OUString > ExcelFilter_getSupportedServiceNames() return aSeq; } -Reference< XInterface > ExcelFilter_create( - const Reference< XComponentContext >& rxContext ) -{ - return static_cast< ::cppu::OWeakObject* >( new ExcelFilter( rxContext ) ); -} - ExcelFilter::ExcelFilter( const Reference< XComponentContext >& rxContext ) throw( RuntimeException ) : XmlFilterBase( rxContext ), mpBookGlob( 0 ) @@ -202,4 +196,13 @@ OUString ExcelFilter::implGetImplementationName() const } // namespace xls } // namespace oox + +extern "C" SAL_DLLPUBLIC_EXPORT ::com::sun::star::uno::XInterface* SAL_CALL +com_sun_star_comp_oox_xls_ExcelFilter_get_implementation(::com::sun::star::uno::XComponentContext* context, + ::com::sun::star::uno::Sequence<css::uno::Any> const &) +{ + return cppu::acquire(new oox::xls::ExcelFilter(context)); +} + + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/source/filter/oox/ooxformulaparser.cxx b/sc/source/filter/oox/ooxformulaparser.cxx index 21328994f4bb..a466a103f7eb 100644 --- a/sc/source/filter/oox/ooxformulaparser.cxx +++ b/sc/source/filter/oox/ooxformulaparser.cxx @@ -111,11 +111,6 @@ OUString OOXMLFormulaParser_getImplementationName() return OUString( "com.sun.star.comp.oox.xls.FormulaParser"); } -Reference< XInterface > OOXMLFormulaParser_create( const Reference< XComponentContext >& ) -{ - return static_cast< ::cppu::OWeakObject* >( new OOXMLFormulaParser ); -} - OOXMLFormulaParser::OOXMLFormulaParser() { } @@ -180,4 +175,14 @@ OUString SAL_CALL OOXMLFormulaParser::printFormula( } // namespace xls } // namespace oox + +extern "C" SAL_DLLPUBLIC_EXPORT ::com::sun::star::uno::XInterface* SAL_CALL +com_sun_star_comp_oox_xls_FormulaParser_get_implementation(::com::sun::star::uno::XComponentContext*, + ::com::sun::star::uno::Sequence<css::uno::Any> const &) +{ + return cppu::acquire(new oox::xls::OOXMLFormulaParser()); +} + + + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/source/filter/services.cxx b/sc/source/filter/services.cxx deleted file mode 100644 index 75f8cc4c4f19..000000000000 --- a/sc/source/filter/services.cxx +++ /dev/null @@ -1,44 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - - -#include <cppuhelper/factory.hxx> -#include <cppuhelper/implementationentry.hxx> -#include <sal/types.h> - -#include "excelfilter.hxx" -#include "ooxformulaparser.hxx" - -#define IMPLEMENTATION_ENTRY( className ) \ - { &className##_create, &className##_getImplementationName, &className##_getSupportedServiceNames, ::cppu::createSingleComponentFactory, 0, 0 } - -extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL scfilt_component_getFactory( - char const * pImplName, void * pServiceManager, void * pRegistryKey) -{ - static cppu::ImplementationEntry const services[] = { - IMPLEMENTATION_ENTRY( oox::xls::ExcelFilter ), - IMPLEMENTATION_ENTRY( oox::xls::OOXMLFormulaParser ), - { 0, 0, 0, 0, 0, 0 } - }; - return cppu::component_getFactoryHelper( - pImplName, pServiceManager, pRegistryKey, services); - -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/util/scfilt.component b/sc/util/scfilt.component index a44d8471da0c..3333e16e88cf 100644 --- a/sc/util/scfilt.component +++ b/sc/util/scfilt.component @@ -19,11 +19,13 @@ <component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@" prefix="scfilt" xmlns="http://openoffice.org/2010/uno-components"> - <implementation name="com.sun.star.comp.oox.xls.ExcelFilter"> + <implementation name="com.sun.star.comp.oox.xls.ExcelFilter" + constructor="com_sun_star_comp_oox_xls_ExcelFilter_get_implementation"> <service name="com.sun.star.document.ImportFilter"/> <service name="com.sun.star.document.ExportFilter"/> </implementation> - <implementation name="com.sun.star.comp.oox.xls.FormulaParser"> + <implementation name="com.sun.star.comp.oox.xls.FormulaParser" + constructor="com_sun_star_comp_oox_xls_FormulaParser_get_implementation"> <service name="com.sun.star.sheet.FilterFormulaParser"/> </implementation> </component> |