To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70922
------- Additional comments from [EMAIL PROTECTED] Wed Apr 18 11:05:55 +0000
2007 -------
The state change focus event for the Format menu item
is wrongly generated in vcl and forwarded by the
accessibility implementation for menus.
In vcl/source/window/menu.cxx, l.4641 it can be seen, that
ImplCallHighlight is called at the wrong parent; in this case
at the menubar instead of the File popup menu.
Therefore this issue can be fixed by replacing
if (pPopupMenu->pStartedFrom)
pPopupMenu->pStartedFrom->ImplCallHighlight(pFloat->nHighlightedItem);
with
if (pPopupMenu)
pPopupMenu->ImplCallHighlight(pFloat->nHighlightedItem);
In addition, the
DBG_ASSERT( pPopupMenu->pStartedFrom, "popup mysteriously killed" );
line should be moved right after the
PopupMenu* pPopupMenu = (PopupMenu*)pMenu->pStartedFrom;
line.
---------------------------------------------------------------------
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]