summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_svtools/AccessibleTreeListBox.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/mod/_svtools/AccessibleTreeListBox.java')
-rw-r--r--qadevOOo/tests/java/mod/_svtools/AccessibleTreeListBox.java16
1 files changed, 2 insertions, 14 deletions
diff --git a/qadevOOo/tests/java/mod/_svtools/AccessibleTreeListBox.java b/qadevOOo/tests/java/mod/_svtools/AccessibleTreeListBox.java
index 38b826c4d277..40fe66ad8e71 100644
--- a/qadevOOo/tests/java/mod/_svtools/AccessibleTreeListBox.java
+++ b/qadevOOo/tests/java/mod/_svtools/AccessibleTreeListBox.java
@@ -138,7 +138,7 @@ public class AccessibleTreeListBox extends TestCase {
throw new StatusException( "Couldn't create document", e );
}
- shortWait();
+ util.utils.pause(5000);
XModel aModel1 = UnoRuntime.queryInterface(XModel.class, xTextDoc);
@@ -156,7 +156,7 @@ public class AccessibleTreeListBox extends TestCase {
PropertyValue[] noArgs = new PropertyValue[0];
getting.dispatch(the_url, noArgs);
- shortWait();
+ util.utils.pause(5000);
XFrame the_frame1 = the_Desk.getCurrentFrame();
@@ -216,16 +216,4 @@ public class AccessibleTreeListBox extends TestCase {
return tEnv;
}
- /**
- * Sleeps for 0.5 sec. to allow StarOffice to react on <code>
- * reset</code> call.
- */
- private void shortWait() {
- try {
- Thread.sleep(5000);
- } catch (InterruptedException e) {
- System.out.println("While waiting :" + e) ;
- }
- }
-
}