summaryrefslogtreecommitdiffstats
path: root/qadevOOo/tests/java/mod
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-26 11:12:03 +0100
committerJens Carl <j.carl43@gmx.de>2018-01-27 08:48:17 +0100
commit73ded2398e2e99f6604f6b76d4129163fffd462f (patch)
treef5124d7e3b7bdfe6e6610ce516560f22e368af25 /qadevOOo/tests/java/mod
parentFix typos (diff)
downloadcore-73ded2398e2e99f6604f6b76d4129163fffd462f.tar.gz
core-73ded2398e2e99f6604f6b76d4129163fffd462f.zip
Fix typos
Change-Id: Id1a19f2c8b44131773d4d5270a607c1907b16597 Reviewed-on: https://gerrit.libreoffice.org/48684 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'qadevOOo/tests/java/mod')
-rw-r--r--qadevOOo/tests/java/mod/_forms/GenericModelTest.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScTabViewObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_sw/SwXTextTable.java2
-rw-r--r--qadevOOo/tests/java/mod/_sw/SwXTextView.java2
8 files changed, 8 insertions, 8 deletions
diff --git a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java
index e28fdc06ba4b..b24a951c30b3 100644
--- a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java
+++ b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java
@@ -374,7 +374,7 @@ public class GenericModelTest extends TestCase {
XControlShape aShape = null;
XMultiServiceFactory xMSF = Param.getMSF();
- log.println("adding contol shape '" + m_kindOfControl + "'");
+ log.println("adding control shape '" + m_kindOfControl + "'");
aShape = FormTools.createControlShape(m_xTextDoc, 3000,
4500, 15000, 10000,
m_kindOfControl);
diff --git a/qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java b/qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java
index d9c369bab452..fe155bba8758 100644
--- a/qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java
@@ -282,7 +282,7 @@ public class ScCellCursorObj extends TestCase {
if (res) {
out.println("Sorted correctly");
} else {
- out.println("Sorted uncorrectly");
+ out.println("Sorted incorrectly");
}
return res;
diff --git a/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java b/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java
index 0f23744a759c..c37e04015c31 100644
--- a/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java
@@ -267,7 +267,7 @@ public class ScCellRangeObj extends TestCase {
if (res) {
out.println("Sorted correctly");
} else {
- out.println("Sorted uncorrectly");
+ out.println("Sorted incorrectly");
}
return res;
diff --git a/qadevOOo/tests/java/mod/_sc/ScTabViewObj.java b/qadevOOo/tests/java/mod/_sc/ScTabViewObj.java
index e07246774ceb..f1e79ed4904b 100644
--- a/qadevOOo/tests/java/mod/_sc/ScTabViewObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScTabViewObj.java
@@ -188,7 +188,7 @@ public class ScTabViewObj extends TestCase {
XForm myForm = null;
String kindOfControl="CommandButton";
XShape aShape = null;
- log.println("adding contol shape '" + kindOfControl + "'");
+ log.println("adding control shape '" + kindOfControl + "'");
XComponent oComp = UnoRuntime.queryInterface(XComponent.class, xSpreadsheetDoc) ;
aShape = FormTools.createControlShape(oComp, 3000, 4500, 15000, 10000, kindOfControl);
diff --git a/qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java b/qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java
index 9647437c0fb4..436901258d98 100644
--- a/qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java
@@ -372,7 +372,7 @@ public class ScTableSheetObj extends TestCase {
if (res) {
out.println("Sorted correctly");
} else {
- out.println("Sorted uncorrectly");
+ out.println("Sorted incorrectly");
}
return res;
diff --git a/qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java b/qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java
index 4eb687bf7490..133ca3ec32c3 100644
--- a/qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java
@@ -129,7 +129,7 @@ public class ScViewPaneObj extends TestCase {
XForm myForm = null;
String kindOfControl="CommandButton";
XShape aShape = null;
- log.println("adding contol shape '" + kindOfControl + "'");
+ log.println("adding control shape '" + kindOfControl + "'");
XComponent oComp = UnoRuntime.queryInterface(XComponent.class, xSpreadsheetDoc) ;
aShape = FormTools.createControlShape(oComp, 3000, 4500, 15000, 10000, kindOfControl);
diff --git a/qadevOOo/tests/java/mod/_sw/SwXTextTable.java b/qadevOOo/tests/java/mod/_sw/SwXTextTable.java
index 7e52e7383a4d..2ff21ff52e45 100644
--- a/qadevOOo/tests/java/mod/_sw/SwXTextTable.java
+++ b/qadevOOo/tests/java/mod/_sw/SwXTextTable.java
@@ -218,7 +218,7 @@ public class SwXTextTable extends TestCase {
if (res) {
out.println("Sorted correctly");
} else {
- out.println("Sorted uncorrectly");
+ out.println("Sorted incorrectly");
}
return res;
diff --git a/qadevOOo/tests/java/mod/_sw/SwXTextView.java b/qadevOOo/tests/java/mod/_sw/SwXTextView.java
index bbb8d6662d46..986e295916a1 100644
--- a/qadevOOo/tests/java/mod/_sw/SwXTextView.java
+++ b/qadevOOo/tests/java/mod/_sw/SwXTextView.java
@@ -205,7 +205,7 @@ public class SwXTextView extends TestCase {
XForm myForm = null;
String kindOfControl="CommandButton";
XShape aShape = null;
- log.println("adding contol shape '" + kindOfControl + "'");
+ log.println("adding control shape '" + kindOfControl + "'");
aShape = FormTools.createControlShape(xTextDoc, 3000,
4500, 15000, 10000,
kindOfControl);