summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorMichael T. Whiteley <mike@whiteley.org>2011-12-07 02:33:51 -0800
committerTor Lillqvist <tlillqvist@suse.com>2011-12-08 11:32:41 +0200
commitdcfd4beb213c551f6ef6ba379651bf303bd9017a (patch)
treea819f50716357c2a5561f6b9a09809cfc52d7dbf /qadevOOo
parentad2eb6c4ba3ca36e2302c721a106dac80d266325 (diff)
childs -> children
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java18
-rw-r--r--qadevOOo/tests/java/ifc/accessibility/_XAccessibleTable.java8
-rw-r--r--qadevOOo/tests/java/mod/_sm/SmEditAccessible.java4
-rw-r--r--qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrl.java2
4 files changed, 16 insertions, 16 deletions
diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java
index e575e332845b..ff93a9eaaf5a 100644
--- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java
+++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java
@@ -138,16 +138,16 @@ public class _XAccessibleSelection extends MultiMethodTest {
log.println("ChildCount: " + childCount);
- int usedChilds = childCount;
+ int usedChildren = childCount;
if (childCount > 500) {
log.println("Restricting to 500");
- usedChilds = 500;
+ usedChildren = 500;
}
- if (usedChilds > 0) {
+ if (usedChildren > 0) {
try {
- for (int i = 0; i < usedChilds; i++) {
+ for (int i = 0; i < usedChildren; i++) {
log.print("Trying to select child with index " + i + ": ");
if (isSelectable(tEnv.getTestObject(), i)) {
@@ -334,16 +334,16 @@ public class _XAccessibleSelection extends MultiMethodTest {
if (multiSelection) {
oObj.selectAllAccessibleChildren();
} else {
- int usedChilds = childCount;
+ int usedChildren = childCount;
if (childCount > 500) {
log.println("Restricting to 500");
- usedChilds = 500;
+ usedChildren = 500;
}
- if (usedChilds > 0) {
+ if (usedChildren > 0) {
try {
- for (int i = 0; i < usedChilds; i++) {
+ for (int i = 0; i < usedChildren; i++) {
if (isSelectable(tEnv.getTestObject(), i)) {
log.print("Trying to select child with index "+i+": ");
@@ -366,7 +366,7 @@ public class _XAccessibleSelection extends MultiMethodTest {
}
int sCount = chkSelectable(tEnv.getTestObject());
- log.println("Found " + sCount + " selectable Childs");
+ log.println("Found " + sCount + " selectable Children");
int selectedCount = oObj.getSelectedAccessibleChildCount();
log.println("After selecting all accessible " + selectedCount +
diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleTable.java b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleTable.java
index fa851bb79ea2..b69b84160847 100644
--- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleTable.java
+++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleTable.java
@@ -383,7 +383,7 @@ public class _XAccessibleTable extends MultiMethodTest {
/**
* If the interface <code>XAccessibleSelection</code> is supported by
- * the component than selects all accessible childs.
+ * the component than selects all accessible children.
* Calls the method and checks a returned sequence.
* Has OK status if a returned sequince is in ascending order.
* The following method tests are to be executed before:
@@ -432,7 +432,7 @@ public class _XAccessibleTable extends MultiMethodTest {
/**
* If the interface <code>XAccessibleSelection</code> is supported by
- * the component than selects all accessible childs.
+ * the component than selects all accessible children.
* Calls the method and checks a returned sequence.
* Has OK status if a returned sequince is in ascending order.
* The following method tests are to be executed before:
@@ -483,7 +483,7 @@ public class _XAccessibleTable extends MultiMethodTest {
/**
* Calls the method with invalid indexes.
* If the interface <code>XAccessibleSelection</code> is supported by
- * the component than selects all accessible childs.
+ * the component than selects all accessible children.
* Calls the method for every row and checks returned values.
* The following method tests are to be executed before:
* <ul>
@@ -545,7 +545,7 @@ public class _XAccessibleTable extends MultiMethodTest {
/**
* Calls the method with invalid indexes.
* If the interface <code>XAccessibleSelection</code> is supported by
- * the component than selects all accessible childs.
+ * the component than selects all accessible children.
* Calls the method for every column and checks returned values.
* The following method tests are to be executed before:
* <ul>
diff --git a/qadevOOo/tests/java/mod/_sm/SmEditAccessible.java b/qadevOOo/tests/java/mod/_sm/SmEditAccessible.java
index 4101e3a57b1a..5d3c72d0707a 100644
--- a/qadevOOo/tests/java/mod/_sm/SmEditAccessible.java
+++ b/qadevOOo/tests/java/mod/_sm/SmEditAccessible.java
@@ -137,10 +137,10 @@ public class SmEditAccessible extends TestCase {
new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer(){
public void fireEvent() {
try {
- System.out.println("Childs "+con.getAccessibleChildCount());
+ System.out.println("Children "+con.getAccessibleChildCount());
xPS.setPropertyValue("Formula", "sum hat x \n int a \n sum b");
shortWait();
- System.out.println("Childs "+con.getAccessibleChildCount());
+ System.out.println("Children "+con.getAccessibleChildCount());
xPS.setPropertyValue("Formula", expFormula);
shortWait();
} catch(com.sun.star.lang.WrappedTargetException e) {
diff --git a/qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrl.java b/qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrl.java
index 73d3a3bf8aff..d26bf920ece4 100644
--- a/qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrl.java
+++ b/qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrl.java
@@ -127,7 +127,7 @@ public class AccessibleIconChoiceCtrl extends TestCase {
* <ul>
* <li> <code>'EventProducer'</code> for
* {@link ifc.accessibility._XAccessibleEventBroadcaster}:
- * method <code>fireEvent()</code> selects accessible childs
+ * method <code>fireEvent()</code> selects accessible children
* </li>
* </ul>
*