diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-23 18:06:05 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-03 15:55:03 +0200 |
commit | 7a464263cc5c2ca2b7128734ff4860e02d662818 (patch) | |
tree | 4614aa57736484cb46c8702f6afee1c2e663e8a0 /offapi | |
parent | 10362695c2060f6aa48bd88f6b8dd6cfa556392a (diff) |
fdo#46808, Adapt UICommandDescription UNO service to new style
Change-Id: Ibca112904f137ff981ae9be3e5bd56aa11aec352
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/ui/UICommandDescription.idl | 25 |
2 files changed, 11 insertions, 16 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index a3fe86f5aa6e..3e76a42ad0c3 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -277,6 +277,7 @@ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/ucb,\ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/ui,\ GlobalAcceleratorConfiguration \ ModuleUIConfigurationManagerSupplier \ + UICommandDescription \ WindowContentFactory \ )) $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/ui/dialogs,\ @@ -1459,7 +1460,6 @@ $(eval $(call gb_UnoApi_add_idlfiles_noheader,offapi,offapi/com/sun/star/ui,\ ModuleUIConfigurationManager \ ModuleWindowStateConfiguration \ UICategoryDescription \ - UICommandDescription \ UIConfigurationManager \ UIElement \ UIElementFactory \ diff --git a/offapi/com/sun/star/ui/UICommandDescription.idl b/offapi/com/sun/star/ui/UICommandDescription.idl index 3be413fa1cbe..c5b8b76f554d 100644 --- a/offapi/com/sun/star/ui/UICommandDescription.idl +++ b/offapi/com/sun/star/ui/UICommandDescription.idl @@ -35,24 +35,19 @@ module com { module sun { module star { module ui { </p> @since OOo 2.0 -*/ - -service UICommandDescription -{ - /** provides access to user interface commands of the installed modules. - <p> - To access the user interface command description of a module, a unique module specifier - must be provided to <member scope="com::sun::star::container">XNameAccess::getByName()</member> function. - The module specifier can be retrieved from the <type scope="com::sun::star::frame">ModuleManager</type> - service. The interface provides references to <type scope="com::sun:star::ui">ModuleUICommandDescription</type>. - </p> + Provides access to user interface commands of the installed modules. - @see com::sun::star::frame::ModuleManager - */ + <p> + To access the user interface command description of a module, a unique module specifier + must be provided to <member scope="com::sun::star::container">XNameAccess::getByName()</member> function. + The module specifier can be retrieved from the <type scope="com::sun::star::frame">ModuleManager</type> + service. The interface provides references to <type scope="com::sun:star::ui">ModuleUICommandDescription</type>. + </p> - interface com::sun::star::container::XNameAccess; -}; + @see com::sun::star::frame::ModuleManager +*/ +service UICommandDescription : com::sun::star::container::XNameAccess; }; }; }; }; |