forked from amazingfate/loongoffice
Java cleanup, access static methods using correct syntax
Change-Id: I8443aef43d82de33ac7cb47d40cc5b544f7c9c87
This commit is contained in:
@ -517,15 +517,15 @@ public class EventTest {
|
||||
try{
|
||||
// get the position and the range of a scroll bar
|
||||
|
||||
XWindow xWindow = at.getCurrentWindow(
|
||||
XWindow xWindow = AccessibilityTools.getCurrentWindow(
|
||||
getMSF(),
|
||||
xModel);
|
||||
|
||||
XAccessible xRoot = at.getAccessibleObject(xWindow);
|
||||
XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
|
||||
|
||||
|
||||
|
||||
XAccessibleContext xPanel = at.getAccessibleObjectForRole(xRoot, AccessibleRole.PANEL);
|
||||
XAccessibleContext xPanel = AccessibilityTools.getAccessibleObjectForRole(xRoot, AccessibleRole.PANEL);
|
||||
XAccessibleComponent xPanelCont = UnoRuntime.queryInterface(XAccessibleComponent.class, xPanel);
|
||||
|
||||
// the position of the panel
|
||||
|
||||
Reference in New Issue
Block a user