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





------- Additional comments from m...@openoffice.org Thu Apr 22 16:14:04 +0000 
2010 -------
Here's the implementation for the class SfxDockingWindows:

long SfxDockingWindow::Notify( NotifyEvent& rEvt )
{
    if ( rEvt.GetType() == EVENT_GETFOCUS )
    {
              // snip code
    }
    else if( rEvt.GetType() == EVENT_KEYINPUT )
    {
        if ( !DockingWindow::Notify( rEvt ) && SfxViewShell::Current() )
        return           
           SfxViewShell::Current()->GlobalKeyInput_Impl(*rEvt.GetKeyEvent());
        return TRUE;
    }

    // snip more code

    return DockingWindow::Notify( rEvt );
}

While checking this code I discovered that nowadays it handles *all*
accelerators. It seems that the behavior has been changed quite some time ago
(perhaps OOo2.0 when SFX lost control over accelerator configuration).

---------------------------------------------------------------------
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: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to