[Libreoffice-commits] core.git: offapi/com qadevOOo/tests sfx2/source udkapi/com

Michael Stahl (via logerrit) logerrit at kemper.freedesktop.org
Thu Aug 8 13:46:32 UTC 2019


 offapi/com/sun/star/chart2/XDataSeries.idl                |    2 +-
 offapi/com/sun/star/presentation/XSlideShowController.idl |    2 +-
 qadevOOo/tests/java/ifc/container/_XIndexAccess.java      |    2 +-
 sfx2/source/view/viewfrm.cxx                              |    2 +-
 udkapi/com/sun/star/container/XIndexAccess.idl            |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit bef93028584ab804d6daba4c4abcabfe6e58dc0f
Author:     Michael Stahl <Michael.Stahl at cib.de>
AuthorDate: Thu Aug 8 14:33:01 2019 +0200
Commit:     Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Thu Aug 8 15:45:38 2019 +0200

    fix typo IndexOutOfBoundException
    
    Change-Id: I4699eabf4d8863acf329e7f2ed30205b67cc6070
    Reviewed-on: https://gerrit.libreoffice.org/77151
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <Michael.Stahl at cib.de>

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


More information about the Libreoffice-commits mailing list