Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2005-04-05 20:52:46 +0000
committerMichael Valenta2005-04-05 20:52:46 +0000
commitfaef8a53e63ccf13ecd34a88f7e8c8939531f1b1 (patch)
treea82ab462ac43e9cc905d1cc8d56cc72c63702f4a /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ListSelectionArea.java
parent4380468cac65f229ff907e487fb2367f1edabf1b (diff)
downloadeclipse.platform.team-faef8a53e63ccf13ecd34a88f7e8c8939531f1b1.tar.gz
eclipse.platform.team-faef8a53e63ccf13ecd34a88f7e8c8939531f1b1.tar.xz
eclipse.platform.team-faef8a53e63ccf13ecd34a88f7e8c8939531f1b1.zip
Converted to using Runtime NLS support
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ListSelectionArea.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ListSelectionArea.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ListSelectionArea.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ListSelectionArea.java
index 7b606a77b..6f8b74c0e 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ListSelectionArea.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ListSelectionArea.java
@@ -132,7 +132,7 @@ public class ListSelectionArea extends DialogArea {
buttonComposite.setLayout(new GridLayout(2, false));
buttonComposite.setData(new GridData(SWT.END, SWT.BEGINNING, true, false));
- Button selectButton = createButton(buttonComposite, Policy.bind("ListSelectionArea.selectAll"), GridData.HORIZONTAL_ALIGN_FILL); //$NON-NLS-1$
+ Button selectButton = createButton(buttonComposite, CVSUIMessages.ListSelectionArea_selectAll, GridData.HORIZONTAL_ALIGN_FILL); //$NON-NLS-1$
SelectionListener listener = new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
@@ -142,7 +142,7 @@ public class ListSelectionArea extends DialogArea {
selectButton.addSelectionListener(listener);
- Button deselectButton = createButton(buttonComposite, Policy.bind("ListSelectionArea.deselectAll"), GridData.HORIZONTAL_ALIGN_FILL); //$NON-NLS-1$
+ Button deselectButton = createButton(buttonComposite, CVSUIMessages.ListSelectionArea_deselectAll, GridData.HORIZONTAL_ALIGN_FILL); //$NON-NLS-1$
listener = new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {

Back to the top