diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-05-31 18:01:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-05-31 18:11:30 +0200 |
commit | 5658600001a41c536cc1497eb7419512cb1353d8 (patch) | |
tree | 70560a8994203c23fe2080c1a3951b40ee59906a /sc/util | |
parent | 779831307fe3da5f2226925972452c9aedeb67a8 (diff) |
No need for two Excel filter services
The reason to have both export-only XclExpXmlStream
("com.sun.star.comp.oox.ExcelFilterExport") and im-/export oox::xls::ExcelFilter
("com.sun.star.comp.oox.xls.ExcelFilter"), where the latter uses the former to
implement export, appears to be historic.
Get rid of the former service, but keep it as an independent C++ class for now
(still also deriving from XmlFilterBase)---this can likely be cleaned up by
somebdoy versed in those XmlFilterBase details.
With the last use (in oox::xls::ExcelFilter, to instantiate XclExpXmlStream) of
the recently introduced com.sun.star.oox.ExcelFilterExport new-style service
gone now, remove that service again.
Change-Id: Id3adacd293cbe4390242827615f074d4bbe9d85a
Diffstat (limited to 'sc/util')
-rw-r--r-- | sc/util/scfilt.component | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sc/util/scfilt.component b/sc/util/scfilt.component index 6834ce1578ec..c4b37285877e 100644 --- a/sc/util/scfilt.component +++ b/sc/util/scfilt.component @@ -19,9 +19,6 @@ <component loader="com.sun.star.loader.SharedLibrary" prefix="scfilt" xmlns="http://openoffice.org/2010/uno-components"> - <implementation name="com.sun.star.comp.oox.ExcelFilterExport"> - <service name="com.sun.star.oox.ExcelFilterExport"/> - </implementation> <implementation name="com.sun.star.comp.oox.xls.ExcelFilter"> <service name="com.sun.star.document.ImportFilter"/> <service name="com.sun.star.document.ExportFilter"/> |