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

Collapse All | Expand All

(-)src/org/eclipse/pde/internal/ui/IHelpContextIds.java (-1 / +4 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2007 IBM Corporation and others.
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 181-186 Link Here
181
	public static final String TOC_EDITOR = PREFIX + "toc_editor"; //$NON-NLS-1$
181
	public static final String TOC_EDITOR = PREFIX + "toc_editor"; //$NON-NLS-1$
182
	public static final String REGISTER_TOC = PREFIX + "register_toc"; //$NON-NLS-1$
182
	public static final String REGISTER_TOC = PREFIX + "register_toc"; //$NON-NLS-1$
183
183
184
	// Context Help Editor
185
	public static final String CTX_HELP_EDITOR = PREFIX + "ctx_help_editor"; //$NON-NLS-1$
186
184
	// Editor Outline
187
	// Editor Outline
185
	public static final String OUTLINE_SORT_ACTION = PREFIX + "outline_sort_action"; //$NON-NLS-1$
188
	public static final String OUTLINE_SORT_ACTION = PREFIX + "outline_sort_action"; //$NON-NLS-1$
186
189
(-)src/org/eclipse/pde/internal/ui/editor/ctxhelp/CtxHelpPage.java (-2 / +2 lines)
Lines 22-27 Link Here
22
import org.eclipse.pde.internal.ui.editor.PDEFormPage;
22
import org.eclipse.pde.internal.ui.editor.PDEFormPage;
23
import org.eclipse.pde.internal.ui.editor.PDEMasterDetailsBlock;
23
import org.eclipse.pde.internal.ui.editor.PDEMasterDetailsBlock;
24
import org.eclipse.swt.custom.StyledText;
24
import org.eclipse.swt.custom.StyledText;
25
import org.eclipse.ui.PlatformUI;
25
import org.eclipse.ui.forms.IManagedForm;
26
import org.eclipse.ui.forms.IManagedForm;
26
import org.eclipse.ui.forms.editor.FormEditor;
27
import org.eclipse.ui.forms.editor.FormEditor;
27
import org.eclipse.ui.forms.editor.IFormPage;
28
import org.eclipse.ui.forms.editor.IFormPage;
Lines 65-72 Link Here
65
			return;
66
			return;
66
		}
67
		}
67
68
68
		// TODO Add Help context
69
		PlatformUI.getWorkbench().getHelpSystem().setHelp(form.getBody(), IHelpContextIds.CTX_HELP_EDITOR);
69
		//		PlatformUI.getWorkbench().getHelpSystem().setHelp(form.getBody(), IHelpContextIds.TOC_EDITOR);
70
70
71
		// Create the rest of the actions in the form title area
71
		// Create the rest of the actions in the form title area
72
		super.createFormContent(managedForm);
72
		super.createFormContent(managedForm);

Return to bug 215848