From e05e58948c50603f05ab3442721cb0ba393144b5 Mon Sep 17 00:00:00 2001 From: Matúš Kukan Date: Thu, 19 Dec 2013 10:39:46 +0100 Subject: Deduplicate writer component factories. Change-Id: I0b82e8a284f871829b7c22a654d61534b5c5a3cc --- include/osl/detail/component-mapping.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'include/osl/detail') diff --git a/include/osl/detail/component-mapping.h b/include/osl/detail/component-mapping.h index a22b86db8c00..b46964aa574f 100644 --- a/include/osl/detail/component-mapping.h +++ b/include/osl/detail/component-mapping.h @@ -43,7 +43,7 @@ const lib_to_constructor_mapping *lo_get_constructor_map(void); } #endif -#define NON_APP_SPECIFIC_FACTORY_MAP \ +#define LO_CORE_FACTORY_MAP \ { "libembobj.a", embobj_component_getFactory }, \ { "libemboleobj.a", emboleobj_component_getFactory }, \ { "libintrospectionlo.a", introspection_component_getFactory }, \ @@ -83,6 +83,11 @@ const lib_to_constructor_mapping *lo_get_constructor_map(void); { "libxoflo.a", xof_component_getFactory }, \ { "libxstor.a", xstor_component_getFactory }, \ +#define LO_WRITER_FACTORY_MAP \ + { "libswdlo.a", swd_component_getFactory }, \ + { "libswlo.a", sw_component_getFactory }, \ + { "libwriterfilterlo.a", writerfilter_component_getFactory }, \ + #define NON_APP_SPECIFIC_CONSTRUCTOR_MAP \ { "com_sun_star_comp_extensions_xml_sax_ParserExpat", com_sun_star_comp_extensions_xml_sax_ParserExpat }, \ { "com_sun_star_comp_extensions_xml_sax_FastParser", com_sun_star_comp_extensions_xml_sax_FastParser }, \ -- cgit