diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-22 10:27:15 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-13 08:42:55 +0200 |
commit | c55f945e4b092a7c972e6f64260ba98784c85a77 (patch) | |
tree | 2e83e6b8ebbe532e9217df8bfa80aa5e4634f168 /qadevOOo/tests | |
parent | b82cc80e8405086856a795a17e655cdcf85020fc (diff) |
java: move DEFAULT_SHORT_WAIT_MS to util.utils
so I can turn PopertyNames into an enum
Change-Id: I939a83c0962813302a3653e75976147b2300cb18
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r-- | qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java b/qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java index 56dbf5369470..43bffcf83360 100644 --- a/qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java +++ b/qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java @@ -39,7 +39,7 @@ import java.awt.event.InputEvent; import lib.MultiMethodTest; import util.AccessibilityTools; -import util.PropertyName; +import util.utils; /** * Testing <code>com.sun.star.awt.XUserInputInterception</code> @@ -151,7 +151,7 @@ public class _XUserInputInterception extends MultiMethodTest { et.run(); - util.utils.pause(PropertyName.DEFAULT_SHORT_WAIT_MS * 2); + util.utils.pause(utils.DEFAULT_SHORT_WAIT_MS * 2); log.println("key listener thread should be finished."); @@ -214,7 +214,7 @@ public class _XUserInputInterception extends MultiMethodTest { et.run(); - util.utils.pause(PropertyName.DEFAULT_SHORT_WAIT_MS * 2); + util.utils.pause(utils.DEFAULT_SHORT_WAIT_MS * 2); log.println("mouse listener thread should be finished."); boolean bOK = m_mousePressed1 & m_mouseReleased1 & |