diff options
author | David Tardon <dtardon@redhat.com> | 2012-04-19 12:21:43 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-04-19 13:33:19 +0200 |
commit | 0909f448fe2871bc7f6b410f23bdaa4d421dea9a (patch) | |
tree | 2358f3a1efa991aaedca70fdae355722089f121e /sdext/source/presenter | |
parent | abd74a8ef0ef260f901b1a03ca4dd47644e5fd46 (diff) |
convert presenter console to passive registration
Diffstat (limited to 'sdext/source/presenter')
-rw-r--r-- | sdext/source/presenter/manifest.xml | 4 | ||||
-rw-r--r-- | sdext/source/presenter/presenter.component | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/sdext/source/presenter/manifest.xml b/sdext/source/presenter/manifest.xml index e1d1e2bde90f..705ac2cdd0f5 100644 --- a/sdext/source/presenter/manifest.xml +++ b/sdext/source/presenter/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="PresenterScreen.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-data" manifest:full-path="registry/data/org/openoffice/Office/Jobs.xcu"/> <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data" diff --git a/sdext/source/presenter/presenter.component b/sdext/source/presenter/presenter.component new file mode 100644 index 000000000000..4dfd7cc403e4 --- /dev/null +++ b/sdext/source/presenter/presenter.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.Draw.framework.PresenterScreenJob"> + <service name="com.sun.star.drawing.framework.PresenterScreenJob"/> + </implementation> + <implementation name="vnd.sun.star.sdext.presenter.PresenterProtocolHandler"> + <service name="com.sun.star.frame.ProtocolHandler"/> + </implementation> +</component> |