summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-10 10:36:47 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-10 11:56:52 +0200
commitfce010450534e6992345f5df7b9d9665befb7c6e (patch)
tree9c5d1bde7db671a95ee47b3191e83da08f9e7e44 /qadevOOo
parent2acafef57153bfa1ade59e887a55457ba677b976 (diff)
Fix typos
Change-Id: Ibc1b7393a8e65bf23c78fdb9da78c6b73b544cf3 Reviewed-on: https://gerrit.libreoffice.org/78793 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/awt/_XUnoControlContainer.java2
-rw-r--r--qadevOOo/tests/java/ifc/chart/_ChartAxis.java4
-rw-r--r--qadevOOo/tests/java/ifc/container/_XIndexAccess.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XUnoControlContainer.java b/qadevOOo/tests/java/ifc/awt/_XUnoControlContainer.java
index 9dcb8cca585f..de59741d4b2d 100644
--- a/qadevOOo/tests/java/ifc/awt/_XUnoControlContainer.java
+++ b/qadevOOo/tests/java/ifc/awt/_XUnoControlContainer.java
@@ -104,7 +104,7 @@ public class _XUnoControlContainer extends MultiMethodTest {
/**
* Test calls the method, then checks returned value.<p>
- * Has <b> OK </b> status if method returns a value that greater then zerro.<p>
+ * Has <b> OK </b> status if method returns a value that greater than zero.<p>
*
* The following method tests are to be completed successfully before :
* <ul>
diff --git a/qadevOOo/tests/java/ifc/chart/_ChartAxis.java b/qadevOOo/tests/java/ifc/chart/_ChartAxis.java
index 8c8e17c65606..2a295c20886f 100644
--- a/qadevOOo/tests/java/ifc/chart/_ChartAxis.java
+++ b/qadevOOo/tests/java/ifc/chart/_ChartAxis.java
@@ -60,7 +60,7 @@ public class _ChartAxis extends MultiPropertyTest {
public void _Max() {
try {
//if AutoOrigin isn't true then this property works only when
- //current Origin is less then new value of Max
+ //current Origin is less than new value of Max
oObj.setPropertyValue("AutoOrigin", Boolean.TRUE);
oObj.setPropertyValue("AutoMax",Boolean.FALSE);
} catch(com.sun.star.lang.WrappedTargetException e) {
@@ -92,7 +92,7 @@ public class _ChartAxis extends MultiPropertyTest {
public void _Min() {
try {
//if AutoOrigin isn't true then this property works only when
- //current Origin is greater then new value of Min
+ //current Origin is greater than new value of Min
oObj.setPropertyValue("AutoOrigin", Boolean.TRUE);
oObj.setPropertyValue("AutoMin", Boolean.FALSE);
} catch(com.sun.star.lang.WrappedTargetException e) {
diff --git a/qadevOOo/tests/java/ifc/container/_XIndexAccess.java b/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
index 2a361ddbfd64..6b19084289ba 100644
--- a/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
+++ b/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
@@ -50,7 +50,7 @@ public class _XIndexAccess extends MultiMethodTest {
public void _getCount() {
boolean result = true;
log.println("getting the number of the elements");
- // hope we haven't a count lower than zerro ;-)
+ // hope we haven't a count lower than zero ;-)
count = -1;
count = oObj.getCount();
result = (count != -1);