diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-07-04 13:01:46 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-05 12:35:37 +0200 |
commit | 3d31d8157208e9300a6bf7d102a413b9c181b4fd (patch) | |
tree | 7909a0a0867e1122353ad80460ca3e07064cc571 /comphelper/util | |
parent | 16983f05df5abe6c79f6b1b09bc5c0bdffb837b7 (diff) |
comphelper: create instances with uno constructors
See tdf#74608 for motivation
Change-Id: Ib7aa69cdf62992cea38a60aac9169c2f1779c1cc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98094
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper/util')
-rw-r--r-- | comphelper/util/comphelp.component | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/comphelper/util/comphelp.component b/comphelper/util/comphelp.component index 5310f04b783a..705e870eb5e0 100644 --- a/comphelper/util/comphelp.component +++ b/comphelper/util/comphelp.component @@ -18,7 +18,7 @@ --> <component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@" - prefix="comphelp" xmlns="http://openoffice.org/2010/uno-components"> + xmlns="http://openoffice.org/2010/uno-components"> <implementation name="AnyCompareFactory" constructor="AnyCompareFactory_get_implementation"> <service name="com.sun.star.ucb.AnyCompareFactory"/> @@ -61,7 +61,8 @@ <service name="com.sun.star.util.OfficeInstallationDirectories"/> <singleton name="com.sun.star.util.theOfficeInstallationDirectories"/> </implementation> - <implementation name="org.openoffice.comp.comphelper.EnumerableMap"> + <implementation name="org.openoffice.comp.comphelper.EnumerableMap" + constructor="org_openoffice_comp_comphelper_EnumerableMap"> <service name="com.sun.star.container.EnumerableMap"/> </implementation> </component> |