Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2010-10-20 09:41:55 +0000
committerDani Megert2010-10-20 09:41:55 +0000
commit99eb9cba059efa1bb40edda619457d93a709a774 (patch)
tree36497bb6cdea1a7c9a606334c7093ac2521798b8 /org.eclipse.search/new search/org/eclipse
parent89ef36a7e7957ae52f7fc5737d805f09b326c7d4 (diff)
downloadeclipse.platform.text-99eb9cba059efa1bb40edda619457d93a709a774.tar.gz
eclipse.platform.text-99eb9cba059efa1bb40edda619457d93a709a774.tar.xz
eclipse.platform.text-99eb9cba059efa1bb40edda619457d93a709a774.zip
Fixed bug 328207: Use standard refresh icon in Search View
Diffstat (limited to 'org.eclipse.search/new search/org/eclipse')
-rw-r--r--org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchAgainAction.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchAgainAction.java b/org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchAgainAction.java
index a78f2385e36..c3b7401d581 100644
--- a/org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchAgainAction.java
+++ b/org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchAgainAction.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation 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
@@ -23,13 +23,14 @@ import org.eclipse.search.ui.ISearchQuery;
import org.eclipse.search.ui.ISearchResult;
import org.eclipse.search.ui.NewSearchUI;
+
class SearchAgainAction extends Action {
private SearchView fView;
public SearchAgainAction(SearchView view) {
setText(SearchMessages.SearchAgainAction_label);
setToolTipText(SearchMessages.SearchAgainAction_tooltip);
- SearchPluginImages.setImageDescriptors(this, SearchPluginImages.T_LCL, SearchPluginImages.IMG_LCL_SEARCH_AGAIN);
+ SearchPluginImages.setImageDescriptors(this, SearchPluginImages.T_LCL, SearchPluginImages.IMG_LCL_REFRESH);
fView= view;
}

Back to the top