mirror of https://github.com/acidanthera/audk.git
Fixed a spelling error
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1110 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ec412251c4
commit
7cae34b00a
|
@ -212,7 +212,7 @@ public class ArchCheckBox extends JPanel {
|
|||
return s.trim();
|
||||
}
|
||||
|
||||
public void setAllItmesSelected(boolean isSelected) {
|
||||
public void setAllItemsSelected(boolean isSelected) {
|
||||
this.jCheckBoxIa32.setSelected(isSelected);
|
||||
this.jCheckBoxX64.setSelected(isSelected);
|
||||
this.jCheckBoxIpf.setSelected(isSelected);
|
||||
|
@ -222,7 +222,7 @@ public class ArchCheckBox extends JPanel {
|
|||
}
|
||||
|
||||
public void setSelectedItems(Vector<String> v) {
|
||||
setAllItmesSelected(false);
|
||||
setAllItemsSelected(false);
|
||||
if (v != null) {
|
||||
for (int index = 0; index < v.size(); index++) {
|
||||
if (v.get(index).equals(this.jCheckBoxIa32.getText())) {
|
||||
|
|
Loading…
Reference in New Issue