1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-02 22:55:26 +02:00

[232355] TVT34:TCT241: TVT FR - Go To menu item missing + Tooltip description for Go Into to be changed

https://bugs.eclipse.org/bugs/show_bug.cgi?id=232355
This commit is contained in:
David Dykstal 2008-05-19 20:15:30 +00:00
parent 3a8b16dc11
commit 8fe810590d

View file

@ -12,7 +12,7 @@
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
*
* Contributors:
* {Name} (company) - description of contribution.
* David Dykstal (IBM) - [232355] Go To menu item missing
*******************************************************************************/
package org.eclipse.rse.internal.ui.actions;
@ -50,9 +50,10 @@ public class SystemCascadingGoToAction extends SystemBaseSubMenuAction
{
super(SystemResources.ACTION_CASCADING_GOTO_LABEL, SystemResources.ACTION_CASCADING_GOTO_TOOLTIP, shell);
setMenuID(ISystemContextMenuConstants.MENU_GOTO);
this.fSystemViewPart = systemViewPart;
setCreateMenuEachTime(false);
setPopulateMenuEachTime(false);
this.fSystemViewPart = systemViewPart;
// something in ganymede m7 causes the actions of this menu to be lost, therefore must re-create each time
setCreateMenuEachTime(true);
setPopulateMenuEachTime(true);
allowOnMultipleSelection(false);
setContextMenuGroup(ISystemContextMenuConstants.GROUP_GOTO);
}