To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=62642





------- Additional comments from [EMAIL PROTECTED] Wed Aug  6 15:00:25 +0000 
2008 -------
Let me elaborate a little bit more the discussion between PL and me: the actual
processing of the ALT key does not happen in Window::Input() directly but in
Window::Notify().  The error is that ::sd::Window::Notify() does forward the
Notify() call to its ::Window base class but does not return its result.  
Changing
        ::Window::Notify( rNEvt );
into
        nResult = ::Window::Notify( rNEvt );
fixes the bug.

This fix makes another little bug visible: pressing ALT once in a newly created
Impress document highlights the File menu entry shortly and then deselects it. 
Any further presses of the ALT key correctly highlight the File menu entry.  The
reason for this is the FocusForwardingWindow in ViewShellBase.cxx :  possibly
due to a merge error the KeyInput() method forwards key presses twice.  Removing
the line
    ::Window::KeyInput(rKEvt);
from FocusForwardingWindow::KeyInput() fixes this.

---------------------------------------------------------------------
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]

Reply via email to