diff options
author | Noel Grandin <noel@peralex.com> | 2013-05-07 14:55:32 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-05-08 08:06:45 +0200 |
commit | 782bbfc65666272497f9c36a9c59d8b32231aa06 (patch) | |
tree | 4a5f93f1f166d25d1e0cb37eba8b8aa4ab143d10 /offapi | |
parent | 2c625e036ddaadb71db36f3e44c737b069e6fcb4 (diff) |
fdo#46808, Convert graphic::SvgTools to new style
Change-Id: Id195be7968ab256e44271cad00fa8b5cac8698b4
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/graphic/SvgTools.idl | 11 |
2 files changed, 4 insertions, 9 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index def1b3a7a716..de96093ab3ce 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -189,6 +189,7 @@ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/graphic,\ GraphicObject \ GraphicProvider \ Primitive2DTools \ + SvgTools \ )) $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/inspection,\ DefaultHelpProvider \ @@ -2651,7 +2652,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/graphic,\ GraphicColorMode \ GraphicType \ PrimitiveFactory2D \ - SvgTools \ XGraphic \ XGraphicObject \ XGraphicProvider \ diff --git a/offapi/com/sun/star/graphic/SvgTools.idl b/offapi/com/sun/star/graphic/SvgTools.idl index 049a4a9ab23a..2a469bdd8c86 100644 --- a/offapi/com/sun/star/graphic/SvgTools.idl +++ b/offapi/com/sun/star/graphic/SvgTools.idl @@ -25,16 +25,11 @@ module com { module sun { module star { module graphic { /** Service that describes the necessary interfaces and properties - to handle svg files + to handle svg files. + Parses a svg file to a sequence of B2DPrimitives for internal usage */ -service SvgTools -{ - /** Interface to parse a svg file to a sequence of - B2DPrimitives for internal usage - */ - interface ::com::sun::star::graphic::XSvgParser; -}; +service SvgTools : XSvgParser; } ; } ; } ; } ; |