1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Patch for David Daoust .. Fix for bug 62338

This commit is contained in:
John Camelon 2004-05-26 15:30:31 +00:00
parent f6db199fe7
commit ad024f522b
2 changed files with 7 additions and 3 deletions

View file

@ -152,6 +152,10 @@ NewClassWizardPage.files.header=Header File:
NewClassWizardPage.files.body=Body File:
NewClassWizardPage.files.linkFileButton=Link to file
CreateLinkedResourceGroup.resolvedPathLabel=Resolved Location:
CreateLinkedResourceGroup.browseButton=Bro&wse...
CreateLinkedResourceGroup.variablesButton=&Variables...
NewClassWizardPage.error.EnterClassName=Class name is empty.
NewClassWizardPage.error.ClassNameExists=Class already exists.
NewClassWizardPage.error.InvalidClassName=Class name is not valid. {0}

View file

@ -90,7 +90,7 @@ public class LinkToFileGroup extends StringButtonDialogField {
DialogField.createEmptySpace(parent);
resolvedPathLabelText = new Label(parent, SWT.SINGLE);
resolvedPathLabelText.setText(WorkbenchMessages.getString("CreateLinkedResourceGroup.resolvedPathLabel")); //$NON-NLS-1$
resolvedPathLabelText.setText(NewWizardMessages.getString("CreateLinkedResourceGroup.resolvedPathLabel")); //$NON-NLS-1$
resolvedPathLabelText.setVisible(true);
resolvedPathLabelData = new Label(parent, SWT.SINGLE);
@ -178,7 +178,7 @@ public class LinkToFileGroup extends StringButtonDialogField {
browseButton = new Button(parent, SWT.PUSH);
//setButtonLayoutData(browseButton);
browseButton.setFont(parent.getFont());
browseButton.setText(WorkbenchMessages.getString("CreateLinkedResourceGroup.browseButton")); //$NON-NLS-1$
browseButton.setText(NewWizardMessages.getString("CreateLinkedResourceGroup.browseButton")); //$NON-NLS-1$
browseButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent event) {
handleLinkTargetBrowseButtonPressed();
@ -196,7 +196,7 @@ public class LinkToFileGroup extends StringButtonDialogField {
variablesButton = new Button(parent, SWT.PUSH);
//setButtonLayoutData(variablesButton);
variablesButton.setFont(parent.getFont());
variablesButton.setText(WorkbenchMessages.getString("CreateLinkedResourceGroup.variablesButton")); //$NON-NLS-1$
variablesButton.setText(NewWizardMessages.getString("CreateLinkedResourceGroup.variablesButton")); //$NON-NLS-1$
variablesButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent event) {
handleVariablesButtonPressed();