| author | Gaetano Santoro | 2011-07-11 09:21:52 (EDT) |
|---|---|---|
| committer | Anton Leherbauer | 2011-07-12 02:01:19 (EDT) |
| commit | d3c33d0ab091e62e972a30e2e70b91bbe2b8a84a (patch) (side-by-side diff) | |
| tree | 99deb66018084e49190e10d57a3c26c3cd82e9bc | |
| parent | c0b8d346abab1a35826e0d6d96f29db9a6e95f1d (diff) | |
| download | org.eclipse.cdt-d3c33d0ab091e62e972a30e2e70b91bbe2b8a84a.zip org.eclipse.cdt-d3c33d0ab091e62e972a30e2e70b91bbe2b8a84a.tar.gz org.eclipse.cdt-d3c33d0ab091e62e972a30e2e70b91bbe2b8a84a.tar.bz2 | |
Bug 351671 - F5 (refresh) do not work in makefile editor when resource is out of sync with filesystem
| -rw-r--r-- | build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/MakefileEditorActionContributor.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/MakefileEditorActionContributor.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/MakefileEditorActionContributor.java index 2171a10..657e76d 100644 --- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/MakefileEditorActionContributor.java +++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/MakefileEditorActionContributor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2008 QNX Software Systems and others. + * Copyright (c) 2000, 2011 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -19,14 +19,14 @@ import org.eclipse.jface.action.Separator; import org.eclipse.ui.IActionBars; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.IWorkbenchActionConstants; -import org.eclipse.ui.texteditor.BasicTextEditorActionContributor; +import org.eclipse.ui.editors.text.TextEditorActionContributor; import org.eclipse.ui.texteditor.ITextEditor; import org.eclipse.ui.texteditor.ITextEditorActionDefinitionIds; import org.eclipse.ui.texteditor.RetargetTextEditorAction; /** */ -public class MakefileEditorActionContributor extends BasicTextEditorActionContributor { +public class MakefileEditorActionContributor extends TextEditorActionContributor { private MakefileEditorTogglePresentationAction fTogglePresentation; private OpenDeclarationAction fOpenDeclarationAction; |

