View | Details | Raw Unified | Return to bug 110317 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/gmf/runtime/common/ui/action/ide/actions/global/GlobalBookmarkAction.java (-3 / +3 lines)
Lines 13-19 Link Here
13
13
14
import org.eclipse.ui.IWorkbenchPage;
14
import org.eclipse.ui.IWorkbenchPage;
15
import org.eclipse.ui.IWorkbenchPart;
15
import org.eclipse.ui.IWorkbenchPart;
16
import org.eclipse.ui.help.WorkbenchHelp;
16
import org.eclipse.ui.PlatformUI;
17
17
18
import org.eclipse.gmf.runtime.common.ui.action.global.GlobalAction;
18
import org.eclipse.gmf.runtime.common.ui.action.global.GlobalAction;
19
import org.eclipse.gmf.runtime.common.ui.action.ide.global.IDEGlobalActionId;
19
import org.eclipse.gmf.runtime.common.ui.action.ide.global.IDEGlobalActionId;
Lines 57-64 Link Here
57
        setText(ResourceManager.getI18NString("GlobalBookmarkAction.label")); //$NON-NLS-1$
57
        setText(ResourceManager.getI18NString("GlobalBookmarkAction.label")); //$NON-NLS-1$
58
58
59
        /* Set the context sensitive help */
59
        /* Set the context sensitive help */
60
        WorkbenchHelp.setHelp(this, IHelpContextIds.PX_U_DEFAULT_CS_HELP);
60
        PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IHelpContextIds.PX_U_DEFAULT_CS_HELP);
61
61
		
62
        super.init();
62
        super.init();
63
    }
63
    }
64
64
(-)src/org/eclipse/gmf/runtime/common/ui/action/ide/actions/global/GlobalCloseProjectAction.java (-2 / +3 lines)
Lines 14-20 Link Here
14
import org.eclipse.core.runtime.IProgressMonitor;
14
import org.eclipse.core.runtime.IProgressMonitor;
15
import org.eclipse.ui.IWorkbenchPage;
15
import org.eclipse.ui.IWorkbenchPage;
16
import org.eclipse.ui.IWorkbenchPart;
16
import org.eclipse.ui.IWorkbenchPart;
17
import org.eclipse.ui.help.WorkbenchHelp;
17
import org.eclipse.ui.PlatformUI;
18
18
19
import org.eclipse.gmf.runtime.common.ui.action.global.GlobalAction;
19
import org.eclipse.gmf.runtime.common.ui.action.global.GlobalAction;
20
import org.eclipse.gmf.runtime.common.ui.action.ide.global.IDEGlobalActionId;
20
import org.eclipse.gmf.runtime.common.ui.action.ide.global.IDEGlobalActionId;
Lines 59-65 Link Here
59
			: getActionId());
59
			: getActionId());
60
60
61
		setText(ResourceManager.getI18NString("GlobalCloseProjectAction.label")); //$NON-NLS-1$
61
		setText(ResourceManager.getI18NString("GlobalCloseProjectAction.label")); //$NON-NLS-1$
62
		WorkbenchHelp.setHelp(this, IHelpContextIds.PX_U_DEFAULT_CS_HELP);
62
		PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IHelpContextIds.PX_U_DEFAULT_CS_HELP);
63
		
63
		super.init();
64
		super.init();
64
	}
65
	}
65
66
(-)src/org/eclipse/gmf/runtime/common/ui/action/ide/actions/global/GlobalOpenProjectAction.java (-2 / +3 lines)
Lines 14-20 Link Here
14
import org.eclipse.core.runtime.IProgressMonitor;
14
import org.eclipse.core.runtime.IProgressMonitor;
15
import org.eclipse.ui.IWorkbenchPage;
15
import org.eclipse.ui.IWorkbenchPage;
16
import org.eclipse.ui.IWorkbenchPart;
16
import org.eclipse.ui.IWorkbenchPart;
17
import org.eclipse.ui.help.WorkbenchHelp;
17
import org.eclipse.ui.PlatformUI;
18
18
19
import org.eclipse.gmf.runtime.common.ui.action.global.GlobalAction;
19
import org.eclipse.gmf.runtime.common.ui.action.global.GlobalAction;
20
import org.eclipse.gmf.runtime.common.ui.action.ide.global.IDEGlobalActionId;
20
import org.eclipse.gmf.runtime.common.ui.action.ide.global.IDEGlobalActionId;
Lines 59-65 Link Here
59
			: getActionId());
59
			: getActionId());
60
60
61
		setText(ResourceManager.getI18NString("GlobalOpenProjectAction.label")); //$NON-NLS-1$
61
		setText(ResourceManager.getI18NString("GlobalOpenProjectAction.label")); //$NON-NLS-1$
62
		WorkbenchHelp.setHelp(this, IHelpContextIds.PX_U_DEFAULT_CS_HELP);
62
		PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IHelpContextIds.PX_U_DEFAULT_CS_HELP);
63
		
63
		super.init();
64
		super.init();
64
	}
65
	}
65
66

Return to bug 110317