Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 307170
Collapse All | Expand All

(-)src/org/eclipse/pde/internal/ui/editor/PDEFormTextEditorContributor.java (-4 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2006, 2008 IBM Corporation and others.
2
 * Copyright (c) 2006, 2010 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 39-48 Link Here
39
				editMenu.add(new Separator(IContextMenuConstants.GROUP_OPEN));
39
				editMenu.add(new Separator(IContextMenuConstants.GROUP_OPEN));
40
				editMenu.add(new Separator(IContextMenuConstants.GROUP_GENERATE));
40
				editMenu.add(new Separator(IContextMenuConstants.GROUP_GENERATE));
41
				editMenu.add(new Separator(IContextMenuConstants.GROUP_ADDITIONS));
41
				editMenu.add(new Separator(IContextMenuConstants.GROUP_ADDITIONS));
42
				if (fCorrectionAssist != null)
43
					editMenu.appendToGroup(IContextMenuConstants.GROUP_GENERATE, fCorrectionAssist);
44
				if (fContentAssist != null)
42
				if (fContentAssist != null)
45
					editMenu.appendToGroup(IContextMenuConstants.GROUP_GENERATE, fContentAssist);
43
					editMenu.prependToGroup(ITextEditorActionConstants.GROUP_ASSIST, fContentAssist);
46
			}
44
			}
47
		}
45
		}
48
46

Return to bug 307170