Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2009-04-01 16:15:39 +0000
committerDani Megert2009-04-01 16:15:39 +0000
commit8958cc27eeb5c21c1dc2836eaf89185c26d0313f (patch)
treeed1899830e50e310f1cd26cc5ebb7bb2bb45579f /org.eclipse.search/new search/org/eclipse/search
parent0bfe648f0a16ba273e1e20378db8d6b84883eece (diff)
downloadeclipse.platform.text-8958cc27eeb5c21c1dc2836eaf89185c26d0313f.tar.gz
eclipse.platform.text-8958cc27eeb5c21c1dc2836eaf89185c26d0313f.tar.xz
eclipse.platform.text-8958cc27eeb5c21c1dc2836eaf89185c26d0313f.zip
Fixed bug 268950: [Commands] New APIs in IWorkbenchCommandConstants are missing '_' separators
Diffstat (limited to 'org.eclipse.search/new search/org/eclipse/search')
-rw-r--r--org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java b/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java
index 8f7d2941136..9480b18bd0e 100644
--- a/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java
+++ b/org.eclipse.search/new search/org/eclipse/search/ui/text/AbstractTextSearchViewPage.java
@@ -1102,7 +1102,7 @@ public abstract class AbstractTextSearchViewPage extends Page implements ISearch
fRemoveSelectedMatches.setActionDefinitionId(IWorkbenchCommandConstants.EDIT_DELETE);
fShowNextAction.setActionDefinitionId(IWorkbenchCommandConstants.NAVIGATE_NEXT);
fShowPreviousAction.setActionDefinitionId(IWorkbenchCommandConstants.NAVIGATE_PREVIOUS);
- fSelectAllAction.setActionDefinitionId(IWorkbenchCommandConstants.EDIT_SELECTALL);
+ fSelectAllAction.setActionDefinitionId(IWorkbenchCommandConstants.EDIT_SELECT_ALL);
}
/**

Back to the top