summaryrefslogtreecommitdiff
path: root/sw/util
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-07-26 17:06:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-27 21:09:44 +0200
commitd12f2e9025250a7e310078ff736f8c6756cf894d (patch)
treec954fa66167e74ee547c3f063d7caa4a0cd0e011 /sw/util
parent32f0a170c941522d0b7c0594aa4627a84a0d1b38 (diff)
sw/vba: create instances with uno constructors
See tdf#74608 for motivation. Change-Id: Ieaa5ef1eef7488d7b53454bdd3b14702de909beb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99519 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/util')
-rw-r--r--sw/util/vbaswobj.component11
1 files changed, 6 insertions, 5 deletions
diff --git a/sw/util/vbaswobj.component b/sw/util/vbaswobj.component
index 07cff4402ec1..99ea11407d74 100644
--- a/sw/util/vbaswobj.component
+++ b/sw/util/vbaswobj.component
@@ -18,17 +18,18 @@
-->
<component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@"
- prefix="vbaswobj" xmlns="http://openoffice.org/2010/uno-components">
- <implementation name="SwVbaDocument">
+ xmlns="http://openoffice.org/2010/uno-components">
+ <implementation name="SwVbaDocument" constructor="Writer_SwVbaDocument_get_implementation">
<service name="ooo.vba.word.Document"/>
</implementation>
- <implementation name="SwVbaEventsHelper">
+ <implementation name="SwVbaEventsHelper" constructor="Writer_SwVbaEventsHelper_get_implementation">
<service name="com.sun.star.document.vba.VBATextEventProcessor"/>
</implementation>
- <implementation name="SwVbaGlobals">
+ <implementation name="SwVbaGlobals" constructor="Writer_SwVbaGlobals_get_implementation">
<service name="ooo.vba.word.Globals"/>
</implementation>
- <implementation name="SwVbaWrapFormat">
+ <implementation name="SwVbaWrapFormat"
+ constructor="Writer_SwVbaWrapFormat_get_implementation">
<service name="ooo.vba.word.WrapFormat"/>
</implementation>
</component>