1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-07 00:05:53 +02:00

fix method spelling "verbage" to "verbiage"

This commit is contained in:
David Dykstal 2006-06-28 02:52:02 +00:00
parent 3c1d75060f
commit 3769d89efc
4 changed files with 7 additions and 8 deletions

View file

@ -20,7 +20,6 @@ import org.eclipse.rse.files.ui.widgets.SystemRemoteFolderCombo;
import org.eclipse.rse.filters.ISystemFilter; import org.eclipse.rse.filters.ISystemFilter;
import org.eclipse.rse.model.IHost; import org.eclipse.rse.model.IHost;
import org.eclipse.rse.subsystems.files.core.SystemFileResources; 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.SystemWidgetHelpers;
import org.eclipse.rse.ui.dialogs.SystemPromptDialog; import org.eclipse.rse.ui.dialogs.SystemPromptDialog;
import org.eclipse.swt.SWT; import org.eclipse.swt.SWT;
@ -74,17 +73,17 @@ public class SystemPromptForHomeFolderDialog
int gridColumns = 1; int gridColumns = 1;
Composite composite_prompts = SystemWidgetHelpers.createComposite(parent, gridColumns); Composite composite_prompts = SystemWidgetHelpers.createComposite(parent, gridColumns);
// verbage // verbiage
boolean wantBorder = false; boolean wantBorder = false;
int span = 1; int span = 1;
int widthHint = 200; 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 // connection\folder prompt
boolean readOnly = false; boolean readOnly = false;
folderCombo = new SystemRemoteFolderCombo(composite_prompts, SWT.BORDER, null, readOnly); folderCombo = new SystemRemoteFolderCombo(composite_prompts, SWT.BORDER, null, readOnly);
folderCombo.setSystemConnection(connection); folderCombo.setSystemConnection(connection);
folderCombo.setText("/home/"+RSEUIPlugin.getLocalMachineName()); folderCombo.setText("/home/"+connection.getDefaultUserId());
// listen for selections // listen for selections
//folderCombo.addSelectionListener(this); //folderCombo.addSelectionListener(this);

View file

@ -700,7 +700,7 @@ public class SystemSelectRemoteFileOrFolderForm
} }
// MESSAGE/VERBAGE TEXT AT TOP // 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); //verbageLabel = SystemWidgetHelpers.createLabel(composite_prompts, verbage, gridColumns);
// SPACER LINE // SPACER LINE

View file

@ -116,7 +116,7 @@ public class SystemFileNewConnectionWizardPage extends AbstractSystemNewConnecti
int span = nbrColumns; int span = nbrColumns;
int widthHint = 200; 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); 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" // 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."); // "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 // Port prompt

View file

@ -144,7 +144,7 @@ public class SystemKillDialog extends SystemPromptDialog
} }
} }
else { else {
prompt = (Label)SystemWidgetHelpers.createVerbage(composite, promptLabel, nbrColumns, false, 200); prompt = (Label)SystemWidgetHelpers.createVerbiage(composite, promptLabel, nbrColumns, false, 200);
} }
// WARNING // WARNING