diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-07-29 11:26:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-07-29 15:23:10 +0200 |
commit | 3c040eff4ace1f108ab13d0bf219a8b91daeaa28 (patch) | |
tree | 91b812338f55858e1fd4cb13b2e9458fce8be963 /vcl/workben/pptfuzzer.cxx | |
parent | e74a98528352b408420c1aa518e9b583529c02db (diff) |
sd_component_getFactory no longer exists
Change-Id: I78405fc5ddbafa9760644bebaeee4ce4622a6c3b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99679
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/workben/pptfuzzer.cxx')
-rw-r--r-- | vcl/workben/pptfuzzer.cxx | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/vcl/workben/pptfuzzer.cxx b/vcl/workben/pptfuzzer.cxx index 2081cfbdc65b..bafb284dd56f 100644 --- a/vcl/workben/pptfuzzer.cxx +++ b/vcl/workben/pptfuzzer.cxx @@ -15,7 +15,6 @@ #include <osl/detail/component-mapping.h> extern "C" { -void * sd_component_getFactory( const char* , void* , void* ); void * i18npool_component_getFactory( const char* , void* , void* ); void * ucb_component_getFactory( const char* , void* , void* ); @@ -52,13 +51,25 @@ void * unoxml_CBlankNode_get_implementation( void *, void * ); void * unoxml_CXPathAPI_get_implementation( void *, void * ); void * unoxml_CSAXDocumentBuilder_get_implementation( void *, void * ); void * unoxml_CDocumentBuilder_get_implementation( void *, void * ); +void * sd_DrawingDocument_get_implementation( void *, void * ); +void * com_sun_star_comp_Draw_DrawingModule_get_implementation( void *, void * ); +void * sd_PresentationDocument_get_implementation( void *, void * ); +void * com_sun_star_comp_Draw_PresenterHelper_get_implementation( void *, void * ); +void * com_sun_star_comp_Draw_PresenterPreviewCache_get_implementation( void *, void * ); +void * com_sun_star_comp_Draw_PresenterTextView_get_implementation( void *, void * ); +void * com_sun_star_comp_Draw_SlideRenderer_get_implementation( void *, void * ); +void * com_sun_star_comp_Draw_SlideSorter_get_implementation( void *, void * ); +void * com_sun_star_comp_Draw_framework_configuration_Configuration_get_implementation( void *, void * ); +void * com_sun_star_comp_draw_SdHtmlOptionsDialog_get_implementation( void *, void * ); +void * com_sun_star_comp_sd_InsertSlideController_get_implementation( void *, void * ); +void * com_sun_star_comp_sd_SlideLayoutController_get_implementation( void *, void * ); +void * com_sun_star_comp_sd_DisplayModeController_get_implementation( void *, void * ); } const lib_to_factory_mapping * lo_get_factory_map(void) { static lib_to_factory_mapping map[] = { - { "libsdlo.a", sd_component_getFactory }, { "libi18npoollo.a", i18npool_component_getFactory }, { "libucb1.a", ucb_component_getFactory }, { 0, 0 } @@ -104,6 +115,19 @@ lo_get_constructor_map(void) { "unoxml_CXPathAPI_get_implementation", unoxml_CXPathAPI_get_implementation }, { "unoxml_CSAXDocumentBuilder_get_implementation", unoxml_CSAXDocumentBuilder_get_implementation }, { "unoxml_CDocumentBuilder_get_implementation", unoxml_CDocumentBuilder_get_implementation }, + { "sd_DrawingDocument_get_implementation", sd_DrawingDocument_get_implementation }, + { "com_sun_star_comp_Draw_DrawingModule_get_implementation", com_sun_star_comp_Draw_DrawingModule_get_implementation }, + { "sd_PresentationDocument_get_implementation", sd_PresentationDocument_get_implementation }, + { "com_sun_star_comp_Draw_PresenterHelper_get_implementation", com_sun_star_comp_Draw_PresenterHelper_get_implementation }, + { "com_sun_star_comp_Draw_PresenterPreviewCache_get_implementation", com_sun_star_comp_Draw_PresenterPreviewCache_get_implementation }, + { "com_sun_star_comp_Draw_PresenterTextView_get_implementation", com_sun_star_comp_Draw_PresenterTextView_get_implementation }, + { "com_sun_star_comp_Draw_SlideRenderer_get_implementation", com_sun_star_comp_Draw_SlideRenderer_get_implementation }, + { "com_sun_star_comp_Draw_SlideSorter_get_implementation", com_sun_star_comp_Draw_SlideSorter_get_implementation }, + { "com_sun_star_comp_Draw_framework_configuration_Configuration_get_implementation", com_sun_star_comp_Draw_framework_configuration_Configuration_get_implementation }, + { "com_sun_star_comp_draw_SdHtmlOptionsDialog_get_implementation", com_sun_star_comp_draw_SdHtmlOptionsDialog_get_implementation }, + { "com_sun_star_comp_sd_InsertSlideController_get_implementation", com_sun_star_comp_sd_InsertSlideController_get_implementation }, + { "com_sun_star_comp_sd_SlideLayoutController_get_implementation", com_sun_star_comp_sd_SlideLayoutController_get_implementation }, + { "com_sun_star_comp_sd_DisplayModeController_get_implementation", com_sun_star_comp_sd_DisplayModeController_get_implementation }, { 0, 0 } }; |