diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2013-12-30 10:23:00 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2013-12-31 13:25:47 +0100 |
commit | 6d564bac023ef13955ad0269c91370396cf33d3e (patch) | |
tree | f31debe4f6fecb5f7557d427083602343448be9d /svx/util | |
parent | 02eb7511f99d2e2322c57ea86695c3db87a037fd (diff) |
svx: Use constructor feature for SvXMLGraphicImportExportHelper.
Change-Id: Icc281ece80b81cdd95b6660c6a82077d283f5a62
Diffstat (limited to 'svx/util')
-rw-r--r-- | svx/util/svx.component | 8 | ||||
-rw-r--r-- | svx/util/svxcore.component | 10 |
2 files changed, 10 insertions, 8 deletions
diff --git a/svx/util/svx.component b/svx/util/svx.component index f087dcb833df..b8f043c8631c 100644 --- a/svx/util/svx.component +++ b/svx/util/svx.component @@ -22,14 +22,6 @@ <implementation name="com.sun.star.comp.Draw.GraphicExporter"> <service name="com.sun.star.drawing.GraphicExportFilter"/> </implementation> - <implementation name="com.sun.star.comp.Svx.GraphicExportHelper"> - <service name="com.sun.star.document.BinaryStreamResolver"/> - <service name="com.sun.star.document.GraphicObjectResolver"/> - </implementation> - <implementation name="com.sun.star.comp.Svx.GraphicImportHelper"> - <service name="com.sun.star.document.BinaryStreamResolver"/> - <service name="com.sun.star.document.GraphicObjectResolver"/> - </implementation> <implementation name="com.sun.star.comp.gallery.GalleryThemeProvider"> <service name="com.sun.star.gallery.GalleryThemeProvider"/> </implementation> diff --git a/svx/util/svxcore.component b/svx/util/svxcore.component index 3a9d43c229f9..8d4e1498fef0 100644 --- a/svx/util/svxcore.component +++ b/svx/util/svxcore.component @@ -36,4 +36,14 @@ <implementation name="com.sun.star.comp.svx.FontworkCharacterSpacingController"> <service name="com.sun.star.frame.ToolbarController"/> </implementation> + <implementation name="com.sun.star.comp.Svx.GraphicExportHelper" + constructor="com_sun_star_comp_Svx_GraphicExportHelper_implementation_getFactory"> + <service name="com.sun.star.document.BinaryStreamResolver"/> + <service name="com.sun.star.document.GraphicObjectResolver"/> + </implementation> + <implementation name="com.sun.star.comp.Svx.GraphicImportHelper" + constructor="com_sun_star_comp_Svx_GraphicImportHelper_implementation_getFactory"> + <service name="com.sun.star.document.BinaryStreamResolver"/> + <service name="com.sun.star.document.GraphicObjectResolver"/> + </implementation> </component> |