diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-08 15:44:53 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-09 11:02:45 +0200 |
commit | 3cff8c64e916eac04332c91d0bd424d4459a960b (patch) | |
tree | 33a73ff33e5f3fa4f6b30f572494fb0f72d54460 /unotools/util/utl.component | |
parent | 57fedb272cfcad3436142dbe9eac2870e3c3e3d2 (diff) |
unotools: create instances with uno constructors
See tdf#74608 for motivation
Change-Id: I7a68484564aea9b416c12d5364d20ff8af77f40b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98380
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools/util/utl.component')
-rw-r--r-- | unotools/util/utl.component | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/unotools/util/utl.component b/unotools/util/utl.component index 8b9371343582..effef2146729 100644 --- a/unotools/util/utl.component +++ b/unotools/util/utl.component @@ -18,11 +18,13 @@ --> <component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@" - prefix="utl" xmlns="http://openoffice.org/2010/uno-components"> - <implementation name="com.sun.star.io.comp.TempFile"> + xmlns="http://openoffice.org/2010/uno-components"> + <implementation name="com.sun.star.io.comp.TempFile" + constructor="unotools_OTempFileService_get_implementation"> <service name="com.sun.star.io.TempFile"/> </implementation> - <implementation name="com.sun.star.comp.unotools.misc.ServiceDocumenter"> + <implementation name="com.sun.star.comp.unotools.misc.ServiceDocumenter" + constructor="unotools_ServiceDocument_get_implementation"> <singleton name="com.sun.star.util.theServiceDocumenter"/> </implementation> </component> |