summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/ui
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-05-01 00:26:55 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:08 +0200
commit392706b5f743b2f989ba5a120bbb31c2296bf902 (patch)
tree6d37555b819fb1c482106f29c0aede2a121ae819 /offapi/com/sun/star/ui
parented993aafc928717ead4fae6b6dac8845771d8661 (diff)
*api: fix loads of badly documented parameters
Change-Id: Ifcfdcc1aee5f45745ab17d83f69c2cf293b58196
Diffstat (limited to 'offapi/com/sun/star/ui')
-rw-r--r--offapi/com/sun/star/ui/XImageManager.idl8
-rw-r--r--offapi/com/sun/star/ui/XUIConfigurationManager.idl2
-rw-r--r--offapi/com/sun/star/ui/XUIElementFactoryRegistration.idl6
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFilePickerControlAccess.idl4
4 files changed, 10 insertions, 10 deletions
diff --git a/offapi/com/sun/star/ui/XImageManager.idl b/offapi/com/sun/star/ui/XImageManager.idl
index 47d45aac1128..cad89a16f01f 100644
--- a/offapi/com/sun/star/ui/XImageManager.idl
+++ b/offapi/com/sun/star/ui/XImageManager.idl
@@ -67,13 +67,13 @@ interface XImageManager
@param nImageType
specifies the image type for this operation.
- @param ResourceURL
+ @param CommandURL
a command URL that should be checked for an associated image.
@return
`TRUE` if an image is associated, otherwise `FALSE`.
*/
- boolean hasImage( [in] short nImageType, [in] string aCommandURL ) raises ( com::sun::star::lang::IllegalArgumentException );
+ boolean hasImage( [in] short nImageType, [in] string CommandURL ) raises ( com::sun::star::lang::IllegalArgumentException );
/** retrieves the associated images of command URLs.
@@ -122,7 +122,7 @@ interface XImageManager
@param nImageType
specifies the image type for this association operation.
- @param aCommandURLSequence
+ @param CommandURLs
a sequence of command URLs for which the images should be removed.
<p>
@@ -133,7 +133,7 @@ interface XImageManager
is thrown.
</p>
*/
- void removeImages( [in] short nImageType, [in] sequence< string > aResourceURLSequence ) raises ( com::sun::star::lang::IllegalArgumentException, com::sun::star::lang::IllegalAccessException );
+ void removeImages( [in] short nImageType, [in] sequence< string > CommandURLs ) raises ( com::sun::star::lang::IllegalArgumentException, com::sun::star::lang::IllegalAccessException );
/** inserts new image/command associations to a image manager.
diff --git a/offapi/com/sun/star/ui/XUIConfigurationManager.idl b/offapi/com/sun/star/ui/XUIConfigurationManager.idl
index a0b5ca6ea12b..b963dc4e222d 100644
--- a/offapi/com/sun/star/ui/XUIConfigurationManager.idl
+++ b/offapi/com/sun/star/ui/XUIConfigurationManager.idl
@@ -174,7 +174,7 @@ interface XUIConfigurationManager : ::com::sun::star::uno::XInterface
/** inserts the settings of a new user interface element.
- @param ResourceURL
+ @param NewResourceURL
a resource URL which identifies the new user interface element.
@param aNewData
diff --git a/offapi/com/sun/star/ui/XUIElementFactoryRegistration.idl b/offapi/com/sun/star/ui/XUIElementFactoryRegistration.idl
index 250bab9d9b71..7d184485c5b6 100644
--- a/offapi/com/sun/star/ui/XUIElementFactoryRegistration.idl
+++ b/offapi/com/sun/star/ui/XUIElementFactoryRegistration.idl
@@ -89,7 +89,7 @@ interface XUIElementFactoryRegistration : com::sun::star::uno::XInterface
following syntax: "private:resource/$type/$name". It is only allowed to use ASCII
characters for type and name.
- @param ModuleName
+ @param ModuleIdentifier
an optional module identifier. This value can remain empty, if a generic factory is requested.
The module identifier can be retrieved from the com::sun::star::frame::ModuleManager service.
*/
@@ -137,7 +137,7 @@ interface XUIElementFactoryRegistration : com::sun::star::uno::XInterface
interface element type class. This value can remain empty if no special factory for a single
user interface element should be deregistered.
- @param aModuleName
+ @param ModuleIdentifier
an optional module name that can be used to deregister a factory only for a single module. This value
can remain empty if not a module based factory should be deregistered. The module identifier can be retrieved
from the com::sun::star::frame::ModuleManager service.
@@ -148,7 +148,7 @@ interface XUIElementFactoryRegistration : com::sun::star::uno::XInterface
</b>
</p>
*/
- void deregisterFactory( [in] string aType, [in] string aName, [in] string aModuleIdentifier ) raises (com::sun::star::container::NoSuchElementException);
+ void deregisterFactory( [in] string aType, [in] string aName, [in] string ModuleIdentifier ) raises (com::sun::star::container::NoSuchElementException);
};
}; }; }; };
diff --git a/offapi/com/sun/star/ui/dialogs/XFilePickerControlAccess.idl b/offapi/com/sun/star/ui/dialogs/XFilePickerControlAccess.idl
index c2baf8dd823b..e50db024c366 100644
--- a/offapi/com/sun/star/ui/dialogs/XFilePickerControlAccess.idl
+++ b/offapi/com/sun/star/ui/dialogs/XFilePickerControlAccess.idl
@@ -57,7 +57,7 @@ published interface XFilePickerControlAccess: com::sun::star::ui::dialogs::XFile
@see com::sun::star::ui::dialogs::ExtendedFilePickerElementIds
@see com::sun::star::ui::dialogs::ControlActions
*/
-void setValue( [in] short aControlId, [in] short aControlAction, [in] any aValue );
+void setValue( [in] short ControlId, [in] short aControlAction, [in] any aValue );
/** Get the value of an additional element within a FilePicker
@@ -124,7 +124,7 @@ string getLabel( [in] short aControlId );
@see com::sun::star::ui::dialogs::CommonFilePickerElementIds
@see com::sun::star::ui::dialogs::ExtendedFilePickerElementIds
*/
-void enableControl( [in] short aControlId, [in] boolean bEnable );
+void enableControl( [in] short ControlId, [in] boolean bEnable );
};