diff options
author | Noel Grandin <noel@peralex.com> | 2013-04-26 08:36:04 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-04-26 08:36:04 +0200 |
commit | 6f17a2f66fa2a4fec56334783410005c4f2f357a (patch) | |
tree | 728696d0f0603783e8d50b9c4c7b43f3016d51ce /sw/qa/complex/indeterminateState | |
parent | 6d4c1f0d4a623bf7f3b3a0af2ece5c969d5aec77 (diff) |
Java cleanup, access static methods using correct syntax
Change-Id: I8443aef43d82de33ac7cb47d40cc5b544f7c9c87
Diffstat (limited to 'sw/qa/complex/indeterminateState')
-rw-r--r-- | sw/qa/complex/indeterminateState/CheckIndeterminateState.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/qa/complex/indeterminateState/CheckIndeterminateState.java b/sw/qa/complex/indeterminateState/CheckIndeterminateState.java index 68f1d0a232ab..c76c1364b607 100644 --- a/sw/qa/complex/indeterminateState/CheckIndeterminateState.java +++ b/sw/qa/complex/indeterminateState/CheckIndeterminateState.java @@ -70,10 +70,10 @@ public class CheckIndeterminateState { XInterface oObj = null; AccessibilityTools at = new AccessibilityTools(); - XWindow xWindow = at.getCurrentContainerWindow(getFactory(), aModel); - XAccessible xRoot = at.getAccessibleObject(xWindow); + XWindow xWindow = AccessibilityTools.getCurrentContainerWindow(getFactory(), aModel); + XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow); - oObj = at.getAccessibleObjectForRole(xRoot, + oObj = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.TOGGLE_BUTTON, "Bold"); assertNotNull("Found a TOGGLE_BUTTON", oObj); |