diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-11 19:36:08 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-08-12 16:23:45 +0200 |
commit | 9bf27c757f92777585300bf6a145717c2cc0b74f (patch) | |
tree | 0fe8a13782060429db304e566956e4074e3e21eb /qadevOOo | |
parent | a8960b2eb558b7e3a6a5c9d7c940e5b3dbc9911e (diff) |
Fix typos
Change-Id: I33effc62e69861d6751a152ff292dcb75802f33c
Reviewed-on: https://gerrit.libreoffice.org/77304
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'qadevOOo')
9 files changed, 11 insertions, 11 deletions
diff --git a/qadevOOo/tests/java/ifc/frame/_XController.java b/qadevOOo/tests/java/ifc/frame/_XController.java index 1ad53a60e25c..af467456e9e6 100644 --- a/qadevOOo/tests/java/ifc/frame/_XController.java +++ b/qadevOOo/tests/java/ifc/frame/_XController.java @@ -47,7 +47,7 @@ import com.sun.star.util.XModifiable; * <li> <code>'SecondModel'</code> (of type <code>XModel</code>): * other model, used for tests </li> * <li> <code>'HasViewData'</code> (of type <code>Boolean</code>): -* (optional relation) if it exsists, so controller has no view data</li> +* (optional relation) if it exists, so controller has no view data</li> * <li> <code>'SecondController'</code> (of type <code>XController</code>): * other controller, used for tests </li> * </ul> <p> diff --git a/qadevOOo/tests/java/ifc/inspection/_XObjectInspectorModel.java b/qadevOOo/tests/java/ifc/inspection/_XObjectInspectorModel.java index e0f3ff97545f..afca1175cc0a 100644 --- a/qadevOOo/tests/java/ifc/inspection/_XObjectInspectorModel.java +++ b/qadevOOo/tests/java/ifc/inspection/_XObjectInspectorModel.java @@ -62,7 +62,7 @@ public class _XObjectInspectorModel extends MultiMethodTest { int index = 0; boolean result = true; - log.println("try to get index of INvalid property name 'InvalidPropertyName' ..."); + log.println("try to get index of Invalid property name 'InvalidPropertyName' ..."); index = oObj.getPropertyOrderIndex("InvalidPropertyName"); log.println("index is: " + index); result = (index == 0); diff --git a/qadevOOo/tests/java/ifc/linguistic2/_XSpellChecker.java b/qadevOOo/tests/java/ifc/linguistic2/_XSpellChecker.java index 642444e2c98e..75eaf86267c0 100644 --- a/qadevOOo/tests/java/ifc/linguistic2/_XSpellChecker.java +++ b/qadevOOo/tests/java/ifc/linguistic2/_XSpellChecker.java @@ -50,7 +50,7 @@ public class _XSpellChecker extends MultiMethodTest { /** * Test calls the method for a correctly spelled word and - * for a incorrectly spelled word and checks returned values. <p> + * for an incorrectly spelled word and checks returned values. <p> * Has <b> OK </b> status if returned value is equal to true in first case, * if returned value is equal to false in second case and no exceptions * were thrown. <p> @@ -75,7 +75,7 @@ public class _XSpellChecker extends MultiMethodTest { } /** - * Test calls the method for a incorrectly spelled word + * Test calls the method for an incorrectly spelled word * and checks returned values. <p> * Has <b> OK </b> status if at least one spell alternative exists * and no exceptions were thrown. <p> diff --git a/qadevOOo/tests/java/ifc/linguistic2/_XSupportedLocales.java b/qadevOOo/tests/java/ifc/linguistic2/_XSupportedLocales.java index 269e07c8ac15..a9536b8d26e8 100644 --- a/qadevOOo/tests/java/ifc/linguistic2/_XSupportedLocales.java +++ b/qadevOOo/tests/java/ifc/linguistic2/_XSupportedLocales.java @@ -68,7 +68,7 @@ public class _XSupportedLocales extends MultiMethodTest { res &= oObj.hasLocale(locales[i]); } - // now create a invalid locale + // now create an invalid locale Locale invalid = new Locale("myLanguage","myCountry",""); res &= !oObj.hasLocale(invalid); diff --git a/qadevOOo/tests/java/ifc/style/_PageProperties.java b/qadevOOo/tests/java/ifc/style/_PageProperties.java index 69c15f0359af..f8896c6d4095 100644 --- a/qadevOOo/tests/java/ifc/style/_PageProperties.java +++ b/qadevOOo/tests/java/ifc/style/_PageProperties.java @@ -57,7 +57,7 @@ public class _PageProperties extends MultiPropertyTest { /** * This property is system dependent and printer dependent. * So only reading it does make sense, since it cannot be determined, if - * it is set to a allowed value. + * it is set to an allowed value. */ public void _PrinterPaperTray() { boolean res = false; diff --git a/qadevOOo/tests/java/ifc/table/_XCellRange.java b/qadevOOo/tests/java/ifc/table/_XCellRange.java index 0aab83d76432..08420e24f66c 100644 --- a/qadevOOo/tests/java/ifc/table/_XCellRange.java +++ b/qadevOOo/tests/java/ifc/table/_XCellRange.java @@ -68,7 +68,7 @@ public class _XCellRange extends MultiMethodTest { log.println("No Exception occurred while getting cell by position with invalid position"); result &= false; } catch (com.sun.star.lang.IndexOutOfBoundsException e) { - log.println("Getting cell by position with a invalid position ... OK"); + log.println("Getting cell by position with an invalid position ... OK"); result &= true; } @@ -122,7 +122,7 @@ public class _XCellRange extends MultiMethodTest { log.println("No Exception occurred while getting cellrange by position with invalid position"); result &= false; } catch (com.sun.star.lang.IndexOutOfBoundsException e) { - log.println("Getting cellrange by position with a invalid position ... OK"); + log.println("Getting cellrange by position with an invalid position ... OK"); result &= true; } diff --git a/qadevOOo/tests/java/mod/_sc/ScShapeObj.java b/qadevOOo/tests/java/mod/_sc/ScShapeObj.java index 93f9c6b40bbd..335f2f848844 100644 --- a/qadevOOo/tests/java/mod/_sc/ScShapeObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScShapeObj.java @@ -62,7 +62,7 @@ public class ScShapeObj extends TestCase { * shape added to the draw page. </li> * <li> <code>'XTEXTINFO'</code> for * {@link ifc.text._XText} : - * creator which can create instnaces of + * creator which can create instances of * <code>com.sun.star.text.TextField.URL</code> * service. </li> * </ul> diff --git a/qadevOOo/tests/java/mod/_sd/AccessibleSlideView.java b/qadevOOo/tests/java/mod/_sd/AccessibleSlideView.java index de43cf3e5537..ea42567afe30 100644 --- a/qadevOOo/tests/java/mod/_sd/AccessibleSlideView.java +++ b/qadevOOo/tests/java/mod/_sd/AccessibleSlideView.java @@ -126,7 +126,7 @@ public class AccessibleSlideView extends TestCase { SOfficeFactory SOF = SOfficeFactory.getFactory( Param.getMSF()); - log.println( "creating a impress document" ); + log.println( "creating an impress document" ); xImpressDoc = SOF.createImpressDoc(null); util.utils.waitForEventIdle(Param.getMSF()); diff --git a/qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java b/qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java index 01b5b23f5d66..ee4aa536d582 100644 --- a/qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java +++ b/qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java @@ -131,7 +131,7 @@ public class SdUnoOutlineView extends TestCase { // get a soffice factory object SOfficeFactory SOF = SOfficeFactory.getFactory( Param.getMSF()); - log.println( "creating a impress document" ); + log.println( "creating an impress document" ); xImpressDoc = SOF.createImpressDoc(null); util.utils.waitForEventIdle(Param.getMSF()); |