[Libreoffice-commits] core.git: vcl/workben

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Wed Aug 12 18:54:25 UTC 2020


 vcl/workben/cgmfuzzer.cxx |   14 ++++++++++++--
 vcl/workben/pptfuzzer.cxx |   14 ++++++++++++--
 vcl/workben/ww2fuzzer.cxx |   14 ++++++++++++--
 vcl/workben/ww6fuzzer.cxx |   14 ++++++++++++--
 vcl/workben/ww8fuzzer.cxx |   14 ++++++++++++--
 5 files changed, 60 insertions(+), 10 deletions(-)

New commits:
commit bb098efaded60118aa25ccd23083955041ba9cea
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Wed Aug 12 19:52:51 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Aug 12 20:53:43 2020 +0200

    ucb_component_getFactory no longer exists
    
    Change-Id: I9c937d5fa0e235de114d8f3962eba0ba3bcb33ef
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100626
    Tested-by: Caolán McNamara <caolanm at redhat.com>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/workben/cgmfuzzer.cxx b/vcl/workben/cgmfuzzer.cxx
index 0984b70c2233..7d36f2acc7a0 100644
--- a/vcl/workben/cgmfuzzer.cxx
+++ b/vcl/workben/cgmfuzzer.cxx
@@ -16,7 +16,6 @@
 
 extern "C" {
 void * i18npool_component_getFactory( const char* , void* , void* );
-void * ucb_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 * );
@@ -69,6 +68,12 @@ void * com_sun_star_comp_draw_SdHtmlOptionsDialog_get_implementation( void *, vo
 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 * );
+void * ucb_UcbCommandEnvironment_get_implementation( void *, void * );
+void * ucb_UcbContentProviderProxyFactory_get_implementation( void *, void * );
+void * ucb_UcbPropertiesManager_get_implementation( void *, void * );
+void * ucb_UcbStore_get_implementation( void *, void * );
+void * ucb_UniversalContentBroker_get_implementation( void *, void * );
+void * ucb_OFileAccess_get_implementation( void *, void * );
 }
 
 const lib_to_factory_mapping *
@@ -76,7 +81,6 @@ lo_get_factory_map(void)
 {
     static lib_to_factory_mapping map[] = {
         { "libi18npoollo.a", i18npool_component_getFactory },
-        { "libucb1.a", ucb_component_getFactory },
         { 0, 0 }
     };
 
@@ -138,6 +142,12 @@ lo_get_constructor_map(void)
         { "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 },
+        { "ucb_UcbCommandEnvironment_get_implementation", ucb_UcbCommandEnvironment_get_implementation, },
+        { "ucb_UcbContentProviderProxyFactory_get_implementation", ucb_UcbContentProviderProxyFactory_get_implementation },
+        { "ucb_UcbPropertiesManager_get_implementation", ucb_UcbPropertiesManager_get_implementation },
+        { "ucb_UcbStore_get_implementation", ucb_UcbStore_get_implementation },
+        { "ucb_UniversalContentBroker_get_implementation", ucb_UniversalContentBroker_get_implementation },
+        { "ucb_OFileAccess_get_implementation", ucb_OFileAccess_get_implementation },
         { 0, 0 }
     };
 
diff --git a/vcl/workben/pptfuzzer.cxx b/vcl/workben/pptfuzzer.cxx
index 2911475c1c15..77fe063cb18a 100644
--- a/vcl/workben/pptfuzzer.cxx
+++ b/vcl/workben/pptfuzzer.cxx
@@ -16,7 +16,6 @@
 
 extern "C" {
 void * i18npool_component_getFactory( const char* , void* , void* );
-void * ucb_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 * );
@@ -49,6 +48,12 @@ void * i18npool_Calendar_gregorian_get_implementation( void *, void * );
 void * unoxml_CXPathAPI_get_implementation( void *, void * );
 void * unoxml_CDocumentBuilder_get_implementation( void *, void * );
 void * sd_PresentationDocument_get_implementation( void *, void * );
+void * ucb_UcbCommandEnvironment_get_implementation( void *, void * );
+void * ucb_UcbContentProviderProxyFactory_get_implementation( void *, void * );
+void * ucb_UcbPropertiesManager_get_implementation( void *, void * );
+void * ucb_UcbStore_get_implementation( void *, void * );
+void * ucb_UniversalContentBroker_get_implementation( void *, void * );
+void * ucb_OFileAccess_get_implementation( void *, void * );
 }
 
 const lib_to_factory_mapping *
@@ -56,7 +61,6 @@ lo_get_factory_map(void)
 {
     static lib_to_factory_mapping map[] = {
         { "libi18npoollo.a", i18npool_component_getFactory },
-        { "libucb1.a", ucb_component_getFactory },
         { 0, 0 }
     };
 
@@ -98,6 +102,12 @@ lo_get_constructor_map(void)
         { "unoxml_CXPathAPI_get_implementation", unoxml_CXPathAPI_get_implementation },
         { "unoxml_CDocumentBuilder_get_implementation", unoxml_CDocumentBuilder_get_implementation },
         { "sd_PresentationDocument_get_implementation", sd_PresentationDocument_get_implementation },
+        { "ucb_UcbCommandEnvironment_get_implementation", ucb_UcbCommandEnvironment_get_implementation, },
+        { "ucb_UcbContentProviderProxyFactory_get_implementation", ucb_UcbContentProviderProxyFactory_get_implementation },
+        { "ucb_UcbPropertiesManager_get_implementation", ucb_UcbPropertiesManager_get_implementation },
+        { "ucb_UcbStore_get_implementation", ucb_UcbStore_get_implementation },
+        { "ucb_UniversalContentBroker_get_implementation", ucb_UniversalContentBroker_get_implementation },
+        { "ucb_OFileAccess_get_implementation", ucb_OFileAccess_get_implementation },
         { 0, 0 }
     };
 
diff --git a/vcl/workben/ww2fuzzer.cxx b/vcl/workben/ww2fuzzer.cxx
index f5e0b3e01d06..bd65223b5ba6 100644
--- a/vcl/workben/ww2fuzzer.cxx
+++ b/vcl/workben/ww2fuzzer.cxx
@@ -16,7 +16,6 @@
 
 extern "C" {
 void * i18npool_component_getFactory( const char* , void* , void* );
-void * ucb_component_getFactory( const char* , void* , void* );
 
 void * com_sun_star_comp_framework_Desktop_get_implementation( void *, void * );
 void * com_sun_star_i18n_LocaleDataImpl_get_implementation( void *, void * );
@@ -41,6 +40,12 @@ 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 * ucb_UcbCommandEnvironment_get_implementation( void *, void * );
+void * ucb_UcbContentProviderProxyFactory_get_implementation( void *, void * );
+void * ucb_UcbPropertiesManager_get_implementation( void *, void * );
+void * ucb_UcbStore_get_implementation( void *, void * );
+void * ucb_UniversalContentBroker_get_implementation( void *, void * );
+void * ucb_OFileAccess_get_implementation( void *, void * );
 }
 
 const lib_to_factory_mapping *
@@ -48,7 +53,6 @@ lo_get_factory_map(void)
 {
     static lib_to_factory_mapping map[] = {
         { "libi18npoollo.a", i18npool_component_getFactory },
-        { "libucb1.a", ucb_component_getFactory },
         { 0, 0 }
     };
 
@@ -82,6 +86,12 @@ 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 },
+        { "ucb_UcbCommandEnvironment_get_implementation", ucb_UcbCommandEnvironment_get_implementation, },
+        { "ucb_UcbContentProviderProxyFactory_get_implementation", ucb_UcbContentProviderProxyFactory_get_implementation },
+        { "ucb_UcbPropertiesManager_get_implementation", ucb_UcbPropertiesManager_get_implementation },
+        { "ucb_UcbStore_get_implementation", ucb_UcbStore_get_implementation },
+        { "ucb_UniversalContentBroker_get_implementation", ucb_UniversalContentBroker_get_implementation },
+        { "ucb_OFileAccess_get_implementation", ucb_OFileAccess_get_implementation },
         { 0, 0 }
     };
 
diff --git a/vcl/workben/ww6fuzzer.cxx b/vcl/workben/ww6fuzzer.cxx
index ab36a21031c5..1dbb99c59d2f 100644
--- a/vcl/workben/ww6fuzzer.cxx
+++ b/vcl/workben/ww6fuzzer.cxx
@@ -16,7 +16,6 @@
 
 extern "C" {
 void * i18npool_component_getFactory( const char* , void* , void* );
-void * ucb_component_getFactory( const char* , void* , void* );
 
 void * com_sun_star_comp_framework_Desktop_get_implementation( void *, void * );
 void * com_sun_star_i18n_LocaleDataImpl_get_implementation( void *, void * );
@@ -42,6 +41,12 @@ 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 * ucb_UcbCommandEnvironment_get_implementation( void *, void * );
+void * ucb_UcbContentProviderProxyFactory_get_implementation( void *, void * );
+void * ucb_UcbPropertiesManager_get_implementation( void *, void * );
+void * ucb_UcbStore_get_implementation( void *, void * );
+void * ucb_UniversalContentBroker_get_implementation( void *, void * );
+void * ucb_OFileAccess_get_implementation( void *, void * );
 }
 
 const lib_to_factory_mapping *
@@ -49,7 +54,6 @@ lo_get_factory_map(void)
 {
     static lib_to_factory_mapping map[] = {
         { "libi18npoollo.a", i18npool_component_getFactory },
-        { "libucb1.a", ucb_component_getFactory },
         { 0, 0 }
     };
 
@@ -84,6 +88,12 @@ 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 },
+        { "ucb_UcbCommandEnvironment_get_implementation", ucb_UcbCommandEnvironment_get_implementation, },
+        { "ucb_UcbContentProviderProxyFactory_get_implementation", ucb_UcbContentProviderProxyFactory_get_implementation },
+        { "ucb_UcbPropertiesManager_get_implementation", ucb_UcbPropertiesManager_get_implementation },
+        { "ucb_UcbStore_get_implementation", ucb_UcbStore_get_implementation },
+        { "ucb_UniversalContentBroker_get_implementation", ucb_UniversalContentBroker_get_implementation },
+        { "ucb_OFileAccess_get_implementation", ucb_OFileAccess_get_implementation },
         { 0, 0 }
     };
 
diff --git a/vcl/workben/ww8fuzzer.cxx b/vcl/workben/ww8fuzzer.cxx
index bc67d6074dd3..27391f18a889 100644
--- a/vcl/workben/ww8fuzzer.cxx
+++ b/vcl/workben/ww8fuzzer.cxx
@@ -16,7 +16,6 @@
 
 extern "C" {
 void * i18npool_component_getFactory( const char* , void* , void* );
-void * ucb_component_getFactory( const char* , void* , void* );
 
 void * com_sun_star_comp_framework_Desktop_get_implementation( void *, void * );
 void * com_sun_star_i18n_LocaleDataImpl_get_implementation( void *, void * );
@@ -42,6 +41,12 @@ 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 * ucb_UcbCommandEnvironment_get_implementation( void *, void * );
+void * ucb_UcbContentProviderProxyFactory_get_implementation( void *, void * );
+void * ucb_UcbPropertiesManager_get_implementation( void *, void * );
+void * ucb_UcbStore_get_implementation( void *, void * );
+void * ucb_UniversalContentBroker_get_implementation( void *, void * );
+void * ucb_OFileAccess_get_implementation( void *, void * );
 }
 
 const lib_to_factory_mapping *
@@ -49,7 +54,6 @@ lo_get_factory_map(void)
 {
     static lib_to_factory_mapping map[] = {
         { "libi18npoollo.a", i18npool_component_getFactory },
-        { "libucb1.a", ucb_component_getFactory },
         { 0, 0 }
     };
 
@@ -84,6 +88,12 @@ 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 },
+        { "ucb_UcbCommandEnvironment_get_implementation", ucb_UcbCommandEnvironment_get_implementation, },
+        { "ucb_UcbContentProviderProxyFactory_get_implementation", ucb_UcbContentProviderProxyFactory_get_implementation },
+        { "ucb_UcbPropertiesManager_get_implementation", ucb_UcbPropertiesManager_get_implementation },
+        { "ucb_UcbStore_get_implementation", ucb_UcbStore_get_implementation },
+        { "ucb_UniversalContentBroker_get_implementation", ucb_UniversalContentBroker_get_implementation },
+        { "ucb_OFileAccess_get_implementation", ucb_OFileAccess_get_implementation },
         { 0, 0 }
     };
 


More information about the Libreoffice-commits mailing list