diff options
author | Michael Stahl <Michael.Stahl@cib.de> | 2019-08-08 14:33:01 +0200 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2019-08-08 15:45:38 +0200 |
commit | bef93028584ab804d6daba4c4abcabfe6e58dc0f (patch) | |
tree | 4083cefd8b6c5a23b1c34be712f598526ed64747 | |
parent | 974c284ba9237b85e99d394921d63de486b4b921 (diff) |
fix typo IndexOutOfBoundException
Change-Id: I4699eabf4d8863acf329e7f2ed30205b67cc6070
Reviewed-on: https://gerrit.libreoffice.org/77151
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
-rw-r--r-- | offapi/com/sun/star/chart2/XDataSeries.idl | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/presentation/XSlideShowController.idl | 2 | ||||
-rw-r--r-- | qadevOOo/tests/java/ifc/container/_XIndexAccess.java | 2 | ||||
-rw-r--r-- | sfx2/source/view/viewfrm.cxx | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/container/XIndexAccess.idl | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/offapi/com/sun/star/chart2/XDataSeries.idl b/offapi/com/sun/star/chart2/XDataSeries.idl index 8f82e320205a..7af8cdd00acf 100644 --- a/offapi/com/sun/star/chart2/XDataSeries.idl +++ b/offapi/com/sun/star/chart2/XDataSeries.idl @@ -43,7 +43,7 @@ interface XDataSeries : ::com::sun::star::uno::XInterface @param nIndex specifies the index of the data point within the series. The first index is 0. - @throws com::sun::star::lang::IndexOutOfBoundException + @throws com::sun::star::lang::IndexOutOfBoundsException if the index is not valid. */ ::com::sun::star::beans::XPropertySet getDataPointByIndex( [in] long nIndex ) diff --git a/offapi/com/sun/star/presentation/XSlideShowController.idl b/offapi/com/sun/star/presentation/XSlideShowController.idl index 58b8ccf1c462..3d8528dbb722 100644 --- a/offapi/com/sun/star/presentation/XSlideShowController.idl +++ b/offapi/com/sun/star/presentation/XSlideShowController.idl @@ -66,7 +66,7 @@ interface XSlideShowController specifies the position in the list of slides that are displayed in this slide show. The first index is 0. - @throws com::sun::star::lang::IndexOutOfBoundException + @throws com::sun::star::lang::IndexOutOfBoundsException if the index is not valid. */ diff --git a/qadevOOo/tests/java/ifc/container/_XIndexAccess.java b/qadevOOo/tests/java/ifc/container/_XIndexAccess.java index daafe8226315..2a361ddbfd64 100644 --- a/qadevOOo/tests/java/ifc/container/_XIndexAccess.java +++ b/qadevOOo/tests/java/ifc/container/_XIndexAccess.java @@ -63,7 +63,7 @@ public class _XIndexAccess extends MultiMethodTest { * Exceptions which throws by a not available index. <p> * Has <b> OK </b> status if first, middle and last elements * successfully returned and has non null value; and if on - * invalid index parameter <code>IndexOutOfBoundException</code> + * invalid index parameter <code>IndexOutOfBoundsException</code> * is thrown.<p> * The following method tests are to be completed successfully before : * <ul> diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx index 241e3c8a2709..bad7d74672d0 100644 --- a/sfx2/source/view/viewfrm.cxx +++ b/sfx2/source/view/viewfrm.cxx @@ -2368,7 +2368,7 @@ static bool impl_maxOpenDocCountReached() ++nOpenDocs; } catch(const css::uno::Exception&) - // A IndexOutOfBoundException can happen in multithreaded + // An IndexOutOfBoundsException can happen in multithreaded // environments, where any other thread can change this // container ! { continue; } diff --git a/udkapi/com/sun/star/container/XIndexAccess.idl b/udkapi/com/sun/star/container/XIndexAccess.idl index 40c578f13602..684efd991123 100644 --- a/udkapi/com/sun/star/container/XIndexAccess.idl +++ b/udkapi/com/sun/star/container/XIndexAccess.idl @@ -50,7 +50,7 @@ published interface XIndexAccess: com::sun::star::container::XElementAccess @param Index specifies the position in the array. The first index is 0. - @throws com::sun::star::lang::IndexOutOfBoundException + @throws com::sun::star::lang::IndexOutOfBoundsException if the index is not valid. @throws com::sun::star::lang::WrappedTargetException |