Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2007-02-12 15:17:02 +0000
committerAnton Leherbauer2007-02-12 15:17:02 +0000
commit6ffcb6408676f2481c9c1cdab3205ce1ca24eae0 (patch)
treeb81955e9268b09c4106bf52a9a55c6d44e282c44
parent8ca2e0c519ae74c6362fce2ab6a612cf74a40405 (diff)
downloadorg.eclipse.cdt-6ffcb6408676f2481c9c1cdab3205ce1ca24eae0.tar.gz
org.eclipse.cdt-6ffcb6408676f2481c9c1cdab3205ce1ca24eae0.tar.xz
org.eclipse.cdt-6ffcb6408676f2481c9c1cdab3205ce1ca24eae0.zip
Fix typo to make folding collapse all work
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/actions/FoldingActionGroup.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/actions/FoldingActionGroup.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/actions/FoldingActionGroup.java
index 050defb3d29..019644b0ec7 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/actions/FoldingActionGroup.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/actions/FoldingActionGroup.java
@@ -108,7 +108,7 @@ public class FoldingActionGroup extends ActionGroup {
fExpandAll.setActionDefinitionId(IFoldingCommandIds.FOLDING_EXPAND_ALL);
editor.setAction("FoldingExpandAll", fExpandAll); //$NON-NLS-1$
- fCollapseAll= new TextOperationAction(FoldingMessages.getResourceBundle(), "Projection.CollapseAll.", editor, ProjectionViewer.COLLAPSE, true); //$NON-NLS-1$
+ fCollapseAll= new TextOperationAction(FoldingMessages.getResourceBundle(), "Projection.CollapseAll.", editor, ProjectionViewer.COLLAPSE_ALL, true); //$NON-NLS-1$
fCollapseAll.setActionDefinitionId(IFoldingCommandIds.FOLDING_COLLAPSE_ALL);
editor.setAction("FoldingCollapseAll", fCollapseAll); //$NON-NLS-1$

Back to the top