diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-02-05 23:15:40 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-02-05 23:16:02 +0100 |
commit | 9739aa9f40367a51dd71ce23f091e970d98947d5 (patch) | |
tree | 318ce0890b9e25abe06e0a34e12dfaa6d09a0ff4 /offapi/com/sun/star/awt | |
parent | 0ccf596a703d66bc120d1b4699c06b0d902d10ac (diff) |
offapi: fix more doxygen warnings
Change-Id: I55f4c0388b99cfebe647be1c35a9fd4bb2acf7ce
Diffstat (limited to 'offapi/com/sun/star/awt')
-rw-r--r-- | offapi/com/sun/star/awt/XFont.idl | 3 | ||||
-rw-r--r-- | offapi/com/sun/star/awt/XSimpleTabController.idl | 3 | ||||
-rw-r--r-- | offapi/com/sun/star/awt/XWindowPeer.idl | 1 | ||||
-rw-r--r-- | offapi/com/sun/star/awt/grid/XSortableGridData.idl | 10 | ||||
-rw-r--r-- | offapi/com/sun/star/awt/tree/XMutableTreeNode.idl | 3 |
5 files changed, 15 insertions, 5 deletions
diff --git a/offapi/com/sun/star/awt/XFont.idl b/offapi/com/sun/star/awt/XFont.idl index bf38741ba2ce..2045ea74b110 100644 --- a/offapi/com/sun/star/awt/XFont.idl +++ b/offapi/com/sun/star/awt/XFont.idl @@ -80,6 +80,9 @@ published interface XFont: com::sun::star::uno::XInterface the width of the specified string of characters measured in pixels for the device. + @param str + the input string. + @param aDXArray receives the width of every single character measured in pixels for the device. diff --git a/offapi/com/sun/star/awt/XSimpleTabController.idl b/offapi/com/sun/star/awt/XSimpleTabController.idl index 62320961693a..5ed9672ff115 100644 --- a/offapi/com/sun/star/awt/XSimpleTabController.idl +++ b/offapi/com/sun/star/awt/XSimpleTabController.idl @@ -55,7 +55,8 @@ interface XSimpleTabController : com::sun::star::uno::XInterface /** change some properties of the specified tab. - Such properties can be: + @param Properties + Such properties can be: <table> <tr> <td><b>Property</b></td> diff --git a/offapi/com/sun/star/awt/XWindowPeer.idl b/offapi/com/sun/star/awt/XWindowPeer.idl index 253b5ff8a4df..d850d9632e00 100644 --- a/offapi/com/sun/star/awt/XWindowPeer.idl +++ b/offapi/com/sun/star/awt/XWindowPeer.idl @@ -62,6 +62,7 @@ published interface XWindowPeer: com::sun::star::lang::XComponent /** invalidates a rectangular area of the window with the specified InvalidateStyle. + @param Rect the area to invalidate. @param Flags see com.sun.star.awt.InvalidateStyle */ void invalidateRect( [in] Rectangle Rect, [in] short Flags ); diff --git a/offapi/com/sun/star/awt/grid/XSortableGridData.idl b/offapi/com/sun/star/awt/grid/XSortableGridData.idl index aa0191e991ea..7a2e2837378d 100644 --- a/offapi/com/sun/star/awt/grid/XSortableGridData.idl +++ b/offapi/com/sun/star/awt/grid/XSortableGridData.idl @@ -50,10 +50,12 @@ interface XSortableGridData /** returns the current sort order. @return - a structure describing the current sort order. ::com::sun::star::beans::Pair::First - denotes the column by which the data is sorted, or -1 if the data is currently unsorted. - ::com::sun::star::beans::Pair::Second is `TRUE` if the data is sorted ascending, - `FALSE` otherwise. + a structure describing the current sort order. + com::sun::star::beans::Pair::First + denotes the column by which the data is sorted, or -1 if + the data is currently unsorted. + com::sun::star::beans::Pair::Second + is `TRUE` if the data is sorted ascending, `FALSE` otherwise. */ ::com::sun::star::beans::Pair< long, boolean > getCurrentSortOrder(); diff --git a/offapi/com/sun/star/awt/tree/XMutableTreeNode.idl b/offapi/com/sun/star/awt/tree/XMutableTreeNode.idl index 1db512c96fa9..3fca84cacb4e 100644 --- a/offapi/com/sun/star/awt/tree/XMutableTreeNode.idl +++ b/offapi/com/sun/star/awt/tree/XMutableTreeNode.idl @@ -45,6 +45,9 @@ interface XMutableTreeNode : XTreeNode @param Index the index where the node will be inserted to this instance. + @param ChildNode + the node to insert. + @throws ::com::sun::star::lang::IllegalArgumentException if <var>ChildNode</var> is not a valid node of the corresponding XTreeDataModel. |