| author | Lars Vogel | 2012-11-07 10:28:34 (EST) |
|---|---|---|
| committer | Eric Moffatt | 2012-11-07 10:29:47 (EST) |
| commit | 699191aabd7973643a37575c2ba93419fadcead7 (patch) (side-by-side diff) | |
| tree | 621573ae6ad5ccba43976d5086e8fe43a4fc3df9 | |
| parent | 5d583c4f05137573387494cfa3e92f58abfcd6d2 (diff) | |
| download | eclipse.platform.ui-699191aabd7973643a37575c2ba93419fadcead7.zip eclipse.platform.ui-699191aabd7973643a37575c2ba93419fadcead7.tar.gz eclipse.platform.ui-699191aabd7973643a37575c2ba93419fadcead7.tar.bz2 | |
Fix for Bug 385037 - ShowViewDialog - Enable multi-user environmentv20121107-152947
(both dialogs)
2 files changed, 6 insertions, 4 deletions
diff --git a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java index 1e94384..66ee79e 100644 --- a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java +++ b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java @@ -21,6 +21,7 @@ import org.eclipse.e4.ui.model.application.MApplication; import org.eclipse.e4.ui.model.application.descriptor.basic.MPartDescriptor; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.jface.dialogs.IDialogConstants; +import org.eclipse.jface.dialogs.IDialogLabelKeys; import org.eclipse.jface.dialogs.IDialogSettings; import org.eclipse.jface.dialogs.PopupDialog; import org.eclipse.jface.viewers.DoubleClickEvent; @@ -136,9 +137,9 @@ public class ShowViewDialog extends Dialog implements */ protected void createButtonsForButtonBar(Composite parent) { okButton = createButton(parent, IDialogConstants.OK_ID, - IDialogConstants.OK_LABEL, true); + IDialogLabelKeys.OK_LABEL_KEY, true); createButton(parent, IDialogConstants.CANCEL_ID, - IDialogConstants.CANCEL_LABEL, false); + IDialogLabelKeys.CANCEL_LABEL_KEY, false); updateButtons(); } diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ShowViewDialog.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ShowViewDialog.java index 2ce78bc..487c75d 100644 --- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ShowViewDialog.java +++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ShowViewDialog.java @@ -15,6 +15,7 @@ import java.util.ArrayList; import java.util.Iterator; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.jface.dialogs.IDialogConstants; +import org.eclipse.jface.dialogs.IDialogLabelKeys; import org.eclipse.jface.dialogs.IDialogSettings; import org.eclipse.jface.dialogs.PopupDialog; import org.eclipse.jface.viewers.DoubleClickEvent; @@ -142,9 +143,9 @@ public class ShowViewDialog extends Dialog implements */ protected void createButtonsForButtonBar(Composite parent) { okButton = createButton(parent, IDialogConstants.OK_ID, - IDialogConstants.OK_LABEL, true); + IDialogLabelKeys.OK_LABEL_KEY, true); createButton(parent, IDialogConstants.CANCEL_ID, - IDialogConstants.CANCEL_LABEL, false); + IDialogLabelKeys.CANCEL_LABEL_KEY, false); updateButtons(); } |

