mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 23:35:48 +02:00
fix method spelling "verbage" to "verbiage"
This commit is contained in:
parent
3c1d75060f
commit
3769d89efc
4 changed files with 7 additions and 8 deletions
|
@ -20,7 +20,6 @@ import org.eclipse.rse.files.ui.widgets.SystemRemoteFolderCombo;
|
|||
import org.eclipse.rse.filters.ISystemFilter;
|
||||
import org.eclipse.rse.model.IHost;
|
||||
import org.eclipse.rse.subsystems.files.core.SystemFileResources;
|
||||
import org.eclipse.rse.ui.RSEUIPlugin;
|
||||
import org.eclipse.rse.ui.SystemWidgetHelpers;
|
||||
import org.eclipse.rse.ui.dialogs.SystemPromptDialog;
|
||||
import org.eclipse.swt.SWT;
|
||||
|
@ -74,17 +73,17 @@ public class SystemPromptForHomeFolderDialog
|
|||
int gridColumns = 1;
|
||||
Composite composite_prompts = SystemWidgetHelpers.createComposite(parent, gridColumns);
|
||||
|
||||
// verbage
|
||||
// verbiage
|
||||
boolean wantBorder = false;
|
||||
int span = 1;
|
||||
int widthHint = 200;
|
||||
SystemWidgetHelpers.createVerbage(composite_prompts, SystemFileResources.RESID_HOMEPROMPT_TITLE, span, wantBorder, widthHint);
|
||||
SystemWidgetHelpers.createVerbiage(composite_prompts, SystemFileResources.RESID_HOMEPROMPT_TITLE, span, wantBorder, widthHint);
|
||||
|
||||
// connection\folder prompt
|
||||
boolean readOnly = false;
|
||||
folderCombo = new SystemRemoteFolderCombo(composite_prompts, SWT.BORDER, null, readOnly);
|
||||
folderCombo.setSystemConnection(connection);
|
||||
folderCombo.setText("/home/"+RSEUIPlugin.getLocalMachineName());
|
||||
folderCombo.setText("/home/"+connection.getDefaultUserId());
|
||||
|
||||
// listen for selections
|
||||
//folderCombo.addSelectionListener(this);
|
||||
|
|
|
@ -700,7 +700,7 @@ public class SystemSelectRemoteFileOrFolderForm
|
|||
}
|
||||
|
||||
// MESSAGE/VERBAGE TEXT AT TOP
|
||||
verbageLabel = (Label) SystemWidgetHelpers.createVerbage(composite_prompts, verbage, gridColumns, false, PROMPT_WIDTH);
|
||||
verbageLabel = (Label) SystemWidgetHelpers.createVerbiage(composite_prompts, verbage, gridColumns, false, PROMPT_WIDTH);
|
||||
//verbageLabel = SystemWidgetHelpers.createLabel(composite_prompts, verbage, gridColumns);
|
||||
|
||||
// SPACER LINE
|
||||
|
|
|
@ -116,7 +116,7 @@ public class SystemFileNewConnectionWizardPage extends AbstractSystemNewConnecti
|
|||
int span = nbrColumns;
|
||||
int widthHint = 200;
|
||||
|
||||
SystemWidgetHelpers.createVerbage(composite_prompts, text, span, border, widthHint);
|
||||
SystemWidgetHelpers.createVerbiage(composite_prompts, text, span, border, widthHint);
|
||||
|
||||
SystemWidgetHelpers.createSpacerLine(composite_prompts, span, false);
|
||||
|
||||
|
@ -125,7 +125,7 @@ public class SystemFileNewConnectionWizardPage extends AbstractSystemNewConnecti
|
|||
// the following is default English text to use if the string is not found in the mri"
|
||||
// "If you manually start the communications server, you will need to set the port number property for this connection. To do this, expand your newly created connection in the Remote Systems Explorer perspective. Right click on the Files subsystem and select Properties. You can specify the port to match the port you specified or were assigned for the server.");
|
||||
|
||||
SystemWidgetHelpers.createVerbage(composite_prompts, text, span, border, widthHint);
|
||||
SystemWidgetHelpers.createVerbiage(composite_prompts, text, span, border, widthHint);
|
||||
|
||||
|
||||
// Port prompt
|
||||
|
|
|
@ -144,7 +144,7 @@ public class SystemKillDialog extends SystemPromptDialog
|
|||
}
|
||||
}
|
||||
else {
|
||||
prompt = (Label)SystemWidgetHelpers.createVerbage(composite, promptLabel, nbrColumns, false, 200);
|
||||
prompt = (Label)SystemWidgetHelpers.createVerbiage(composite, promptLabel, nbrColumns, false, 200);
|
||||
}
|
||||
|
||||
// WARNING
|
||||
|
|
Loading…
Add table
Reference in a new issue