[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User af changed the following:

What|Old value |New value

Target milestone|OOo 3.3   |OOo 3.4





--- Additional comments from a...@openoffice.org Tue Jul 13 08:36:47 + 
2010 ---
Changing target.

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


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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User af changed the following:

What|Old value |New value

Target milestone|OOo 3.2   |OOo 3.3





--- Additional comments from a...@openoffice.org Fri Sep 25 08:45:00 + 
2009 ---
Retargeted again for the same reasons as before.

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


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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User af changed the following:

What|Old value |New value

Target milestone|OOo 3.1   |OOo 3.2





--- Additional comments from [EMAIL PROTECTED] Tue Dec  9 14:28:36 + 
2008 ---
Setting target to OOo 3.2 due to time constraints.

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

2008-08-06 Thread af
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 + 
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]



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User pl changed the following:

What|Old value |New value

 Assigned to|pl|af

Target milestone|OOo 3.x   |OOo 3.1





--- Additional comments from [EMAIL PROTECTED] Wed Aug  6 14:37:05 + 
2008 ---
pl->af: as discussed, Notify should return the correct value, the focus
forwarder should not duplicate the event.

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User af changed the following:

What|Old value |New value

 Assigned to|af|pl





--- Additional comments from [EMAIL PROTECTED] Wed Aug  6 10:49:08 + 
2008 ---
Please take over.

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User liangweike changed the following:

What|Old value |New value

  CC|''|'liangweike'





--- Additional comments from [EMAIL PROTECTED] Tue Jul  8 08:50:34 + 
2008 ---
According my experiments to this issue sometimes ALT needs to be pressed twice
so that later hitting ENTER can open File menu. It may be the problem of focus
transferring. I am trying to analyse it. 

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User af changed the following:

What|Old value |New value

Target milestone|OOo 2.4   |OOo 2.x





--- Additional comments from [EMAIL PROTECTED] Tue Oct 30 12:47:05 + 
2007 ---
Retargeted to 2.x due to time constraints.

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

2007-09-11 Thread af
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] Tue Sep 11 13:28:30 + 
2007 ---
@ zhongqiyao: I do not think that these issues are related and belong to
different applications.

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User af changed the following:

What|Old value |New value

Target milestone|OOo Later |OOo 2.4





--- Additional comments from [EMAIL PROTECTED] Tue Sep 11 13:25:16 + 
2007 ---
Increasing target to that of duplicate issue (OOo 2.4).

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

2007-09-11 Thread af
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] Tue Sep 11 13:24:09 + 
2007 ---
*** Issue 76765 has been marked as a duplicate of this issue. ***

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

2007-09-11 Thread zhongqiyao
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] Tue Sep 11 10:55:12 + 
2007 ---
In Calc, pressing Alt+O,C selects "Format -> Cell" but
does not execute the menu item.
Can you check all such problems in all menu items?

Thanks.

Qiyao

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

2007-09-07 Thread zhongqiyao
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] Fri Sep  7 08:38:35 + 
2007 ---
In Calc, pressing Alt+E,S selects the "Edit -> Paste Specified (&S)"
but does not execute the menu item.

Is this a similar problem?
Could you check all such menu items in all applications,
not just Draw and Calc?

Thanks.

Qiyao

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

2007-09-07 Thread zhongqiyao
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] Fri Sep  7 08:38:04 + 
2007 ---
In Calc, pressing Alt+E,S selects the "Edit -> Paste Specified (&S)"
but does not execute the menu item.

Is this a similar problem?
Could you check all such menu items in all applications,
not just Draw and Calc?

Thanks.

Qiyao

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

2006-03-07 Thread wg
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] Tue Mar  7 00:00:10 -0800 
2006 ---
*** Issue 62844 has been marked as a duplicate of this issue. ***

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



[graphics-issues] [Issue 62642] ALT and ENTER do not open the file menu

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


User cl changed the following:

  What|Old value |New value

   Assigned to|cl|af





--- Additional comments from [EMAIL PROTECTED] Wed Mar  1 04:19:08 -0800 
2006 ---
reassigned

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