diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-07-15 09:30:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-07-15 12:28:44 +0200 |
commit | a7350a3759fd651c3cae1b7ed67cea0d55725ce2 (patch) | |
tree | cea6a8e43b387fa640f23b76d16d40eac9013325 | |
parent | c78221a5ad98939f3fb9ca6af4a2d2d2a63ff6ee (diff) |
lng_component_getFactory no longer exists
Change-Id: I8cccbc8fde608b4153333777154c26e65c31f03f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98802
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | vcl/workben/cgmfuzzer.cxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/vcl/workben/cgmfuzzer.cxx b/vcl/workben/cgmfuzzer.cxx index ffd82f88985e..4bfec56fa37b 100644 --- a/vcl/workben/cgmfuzzer.cxx +++ b/vcl/workben/cgmfuzzer.cxx @@ -18,7 +18,6 @@ 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* ); -void * lng_component_getFactory( const char* , void* , void* ); void * com_sun_star_i18n_LocaleDataImpl_get_implementation( void *, void * ); void * com_sun_star_i18n_BreakIterator_Unicode_get_implementation( void *, void * ); @@ -53,6 +52,11 @@ 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 * linguistic_ConvDicList_get_implementation( void *, void * ); +void * linguistic_DicList_get_implementation( void *, void * ); +void * linguistic_LinguProps_get_implementation( void *, void * ); +void * linguistic_LngSvcMgr_get_implementation( void *, void * ); +void * linguistic_GrammarCheckingIterator_get_implementation( void *, void * ); } const lib_to_factory_mapping * @@ -62,7 +66,6 @@ lo_get_factory_map(void) { "libsdlo.a", sd_component_getFactory }, { "libi18npoollo.a", i18npool_component_getFactory }, { "libucb1.a", ucb_component_getFactory }, - { "liblnglo.a", lng_component_getFactory }, { 0, 0 } }; @@ -106,6 +109,11 @@ 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 }, + { "linguistic_ConvDicList_get_implementation", linguistic_ConvDicList_get_implementation }, + { "linguistic_DicList_get_implementation", linguistic_DicList_get_implementation }, + { "linguistic_LinguProps_get_implementation", linguistic_LinguProps_get_implementation }, + { "linguistic_LngSvcMgr_get_implementation", linguistic_LngSvcMgr_get_implementation }, + { "linguistic_GrammarCheckingIterator_get_implementation", linguistic_GrammarCheckingIterator_get_implementation }, { 0, 0 } }; |