Small typo fixes.
This commit is contained in:
parent
88d302f2b0
commit
88679e608a
|
@ -211,7 +211,7 @@ public class VLocation extends JComponent
|
|||
} // isReadWrite
|
||||
|
||||
/**
|
||||
* Set Mandatory (and back bolor)
|
||||
* Set Mandatory (and back color)
|
||||
* @param mandatory true if mandatory
|
||||
*/
|
||||
public void setMandatory (boolean mandatory)
|
||||
|
|
|
@ -424,10 +424,10 @@ public class VLocationDialog extends CDialog
|
|||
*/
|
||||
private String lookupPostcode(MCountry country, String postcode)
|
||||
{
|
||||
// Initialise the lookup class.
|
||||
AddressLookupInterface pcLookup = null;
|
||||
try {
|
||||
AddressLookupInterface pcLookupTmp = (AddressLookupInterface) Class
|
||||
// Initialize the lookup class.
|
||||
AddressLookupInterface pcLookup = null;
|
||||
try {
|
||||
AddressLookupInterface pcLookupTmp = (AddressLookupInterface) Class
|
||||
.forName(country.getLookupClassName()).newInstance();
|
||||
pcLookup = pcLookupTmp.newInstance();
|
||||
} catch (Exception e) {
|
||||
|
|
|
@ -141,7 +141,7 @@ public class VURL extends JComponent
|
|||
m_button.setFocusable(false);
|
||||
this.add(m_button, BorderLayout.EAST);
|
||||
|
||||
// Prefereed Size
|
||||
// Preferred Size
|
||||
this.setPreferredSize(this.getPreferredSize()); // causes r/o to be the same length
|
||||
// ReadWrite
|
||||
if (isReadOnly || !isUpdateable)
|
||||
|
@ -221,7 +221,7 @@ public class VURL extends JComponent
|
|||
|
||||
/**
|
||||
* Set ReadWrite
|
||||
* @param rw read rwite
|
||||
* @param rw read/write
|
||||
*/
|
||||
public void setReadWrite (boolean rw)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue