summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/mozilla
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/mozilla
parented993aafc928717ead4fae6b6dac8845771d8661 (diff)
*api: fix loads of badly documented parameters
Change-Id: Ifcfdcc1aee5f45745ab17d83f69c2cf293b58196
Diffstat (limited to 'offapi/com/sun/star/mozilla')
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstance.idl6
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstancePeer.idl2
-rw-r--r--offapi/com/sun/star/mozilla/XPluginInstanceSyncPeer.idl4
3 files changed, 6 insertions, 6 deletions
diff --git a/offapi/com/sun/star/mozilla/XPluginInstance.idl b/offapi/com/sun/star/mozilla/XPluginInstance.idl
index 2221ed6a5b49..82f94a52e768 100644
--- a/offapi/com/sun/star/mozilla/XPluginInstance.idl
+++ b/offapi/com/sun/star/mozilla/XPluginInstance.idl
@@ -67,7 +67,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface
@param theURL [in]: the URL that denotes the stream
@param filter [in]: a filter string to suggest a component that should handle the document
@param stream [in]: the data stream
- @param sessiondata [in]: the data specifying the current session
+ @param sessionData [in]: the data specifying the current session
*/
void newStream(
@@ -84,7 +84,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface
@param MIMEDesc [in]: the MIMEtype of the data stream
@param theURL [in]: the URL to be opened
@param filter [in]: a filter string to suggest a component that should handle the document
- @param sessiondata [in]: the data specifying the current session
+ @param sessionData [in]: the data specifying the current session
*/
void newURL( [in] string MIMEDesc, [in] string theURL, [in] string filter, [in] any sessionData );
@@ -92,7 +92,7 @@ published interface XPluginInstance: com::sun::star::uno::XInterface
/** Retrieves the URL of the HTTP Load balancing Slave.
- @param aURL [out]: the full qualified host name of the LBS
+ @param aHost [out]: the full qualified host name of the LBS
@param aPort [out]: the port number
@param aPrefix [out]: the url prefix to the portal
diff --git a/offapi/com/sun/star/mozilla/XPluginInstancePeer.idl b/offapi/com/sun/star/mozilla/XPluginInstancePeer.idl
index 66e14e180180..1c87cf241c28 100644
--- a/offapi/com/sun/star/mozilla/XPluginInstancePeer.idl
+++ b/offapi/com/sun/star/mozilla/XPluginInstancePeer.idl
@@ -47,7 +47,7 @@ published interface XPluginInstancePeer: com::sun::star::uno::XInterface
@return <CODE>TRUE</CODE> on success
*/
- boolean setWindowSize( [in] long width, [in] long heigth );
+ boolean setWindowSize( [in] long width, [in] long height );
/** Show status / hint message in browser's message area.
diff --git a/offapi/com/sun/star/mozilla/XPluginInstanceSyncPeer.idl b/offapi/com/sun/star/mozilla/XPluginInstanceSyncPeer.idl
index 10dbc777eab1..2aeb3e522a63 100644
--- a/offapi/com/sun/star/mozilla/XPluginInstanceSyncPeer.idl
+++ b/offapi/com/sun/star/mozilla/XPluginInstanceSyncPeer.idl
@@ -34,7 +34,7 @@ published interface XPluginInstanceSyncPeer : com::sun::star::uno::XInterface
/** Opens a new browser window with a plugin instance synchronously.
@param aInstance [out]: new plugin instance in case of success
- @param Any [out]: linkage to the window data
+ @param aLinkage [out]: linkage to the window data
@param embedded [out]: selects embedded or full page plugin mode
@@ -42,7 +42,7 @@ published interface XPluginInstanceSyncPeer : com::sun::star::uno::XInterface
void openNewBrowserWindow(
[out] XPluginInstance aInstance,
[out] any aLinkage,
- [out] boolean embeded);
+ [out] boolean embedded);
};