To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=37643
User tbe changed the following:
What |Old value |New value
================================================================================
Assigned to|tbe |cn
--------------------------------------------------------------------------------
Status|STARTED |NEW
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Wed Nov 14 11:52:33 +0000
2007 -------
CN: This issue seems to be a problem of your test code.
In AccessibleStatusBarItem.java you are listening at the
wrong status bar item for a text changed event.
The reason is simply that the index in
XAccessibleContext::getAccessibleChild(index) is zero-based.
When exchanging the following lines in AccessibleStatusBarItem.java
(lines 179f)
oObj = statusbar.getAccessibleChild(6);
secondItem = statusbar.getAccessibleChild(1);
with
oObj = statusbar.getAccessibleChild(5);
secondItem = statusbar.getAccessibleChild(0);
the test runs successful.
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]