diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-06 13:54:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-07 11:34:36 +0200 |
commit | b719e02868d364849b26080fa4182d4adfc68250 (patch) | |
tree | 64e06c4bbdd9313925a32b1752b0347c7df021ed /xmlhelp/util | |
parent | 439c9460408bb379cf2d37f3831461cf6879fb74 (diff) |
xmlhelp: create instances with uno constructors
See tdf#74608 for motivation
Change-Id: Id05885b9da95009609cf8875be489aa88fd5a3cb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98232
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlhelp/util')
-rw-r--r-- | xmlhelp/util/ucpchelp1.component | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/xmlhelp/util/ucpchelp1.component b/xmlhelp/util/ucpchelp1.component index 3df772cee1ae..dc1934ddfdcc 100644 --- a/xmlhelp/util/ucpchelp1.component +++ b/xmlhelp/util/ucpchelp1.component @@ -18,12 +18,14 @@ --> <component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@" - prefix="ucpchelp" xmlns="http://openoffice.org/2010/uno-components"> - <implementation name="CHelpContentProvider"> + xmlns="http://openoffice.org/2010/uno-components"> + <implementation name="CHelpContentProvider" + constructor="CHelpContentProvider_get_implementation"> <service name="com.sun.star.help.XMLHelp"/> <service name="com.sun.star.ucb.HelpContentProvider"/> </implementation> - <implementation name="com.sun.star.help.TreeViewImpl"> + <implementation name="com.sun.star.help.TreeViewImpl" + constructor="com_sun_star_help_TreeViewImpl_get_implementation"> <service name="com.sun.star.help.TreeView"/> <service name="com.sun.star.ucb.HiearchyDataSource"/> </implementation> |