diff options
author | David Tardon <dtardon@redhat.com> | 2012-04-19 12:03:37 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-04-19 13:33:17 +0200 |
commit | 6d9a524352948695e9395226c7568980fd4d5f12 (patch) | |
tree | 9b6a9881d2194aa84c57b9a28177b43ed535101b /sdext/source | |
parent | 7a3095baa699462d3e8f0f920c6d681a342d4d4d (diff) |
convert presentation minimizer to passive registration
Diffstat (limited to 'sdext/source')
-rw-r--r-- | sdext/source/minimizer/manifest.xml | 4 | ||||
-rw-r--r-- | sdext/source/minimizer/minimizer.component | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/sdext/source/minimizer/manifest.xml b/sdext/source/minimizer/manifest.xml index 4b55ddd22f0d..5de702ca19f1 100644 --- a/sdext/source/minimizer/manifest.xml +++ b/sdext/source/minimizer/manifest.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE manifest:manifest PUBLIC "-//OpenOffice.org//DTD Manifest 1.0//EN" "Manifest.dtd"> <manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest"> - <manifest:file-entry manifest:media-type="application/vnd.sun.star.uno-component;type=native" - manifest:full-path="SunPresentationMinimizer.uno@SHARED_EXTENSION@"/> + <manifest:file-entry manifest:media-type="application/vnd.sun.star.uno-components;platform=@PLATFORM@" + manifest:full-path="components.rdb"/> <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-schema" manifest:full-path="registry/schema/org/openoffice/Office/extension/SunPresentationMinimizer.xcs"/> <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data" diff --git a/sdext/source/minimizer/minimizer.component b/sdext/source/minimizer/minimizer.component new file mode 100644 index 000000000000..8a90fd22c5dc --- /dev/null +++ b/sdext/source/minimizer/minimizer.component @@ -0,0 +1,10 @@ +<?xml version="1.0"?> +<component xmlns="http://openoffice.org/2010/uno-components" + loader="com.sun.star.loader.SharedLibrary"> + <implementation name="com.sun.star.comp.PPPOptimizerImp"> + <service name="com.sun.star.comp.PPPOptimizer"/> + </implementation> + <implementation name="com.sun.star.comp.SunPresentationMinimizerImp"> + <service name="com.sun.star.comp.SunPresentationMinimizer"/> + </implementation> +</component> |