diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-16 12:19:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-17 08:47:55 +0200 |
commit | 2fc112e98ddcb46038eaff341734331a8558934f (patch) | |
tree | e0d8424193b925b4fbfbb82afbdcfdf83b2fd869 /package/inc | |
parent | c33f3ede4a5e5336972aab2cb13714624d479b0a (diff) |
package: create instances with uno constructors
See tdf#74608 for motivation.
Change-Id: I17627bdd2f4f595343ad9bf524dc57cd03170b2a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98921
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package/inc')
-rw-r--r-- | package/inc/ZipPackage.hxx | 5 | ||||
-rw-r--r-- | package/inc/zipfileaccess.hxx | 7 |
2 files changed, 0 insertions, 12 deletions
diff --git a/package/inc/ZipPackage.hxx b/package/inc/ZipPackage.hxx index 779e5cd7ed41..ec39666fbbb1 100644 --- a/package/inc/ZipPackage.hxx +++ b/package/inc/ZipPackage.hxx @@ -161,11 +161,6 @@ public: virtual OUString SAL_CALL getImplementationName( ) override; virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override; - - // Uno componentiseralation - static OUString static_getImplementationName(); - static css::uno::Sequence < OUString > static_getSupportedServiceNames(); - static css::uno::Reference < css::lang::XSingleServiceFactory > createServiceFactory( css::uno::Reference < css::lang::XMultiServiceFactory > const & rServiceFactory ); }; #endif diff --git a/package/inc/zipfileaccess.hxx b/package/inc/zipfileaccess.hxx index 2cd403d54545..a3f96346d6ec 100644 --- a/package/inc/zipfileaccess.hxx +++ b/package/inc/zipfileaccess.hxx @@ -61,13 +61,6 @@ public: static bool StringGoodForPattern_Impl( const OUString& aString, const css::uno::Sequence< OUString >& aPattern ); - static css::uno::Sequence< OUString > impl_staticGetSupportedServiceNames(); - - static OUString impl_staticGetImplementationName(); - - static css::uno::Reference< css::uno::XInterface > impl_staticCreateSelfInstance( - const css::uno::Reference< css::lang::XMultiServiceFactory >& rxMSF ); - // XInitialization virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override; |