summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorlhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-26 23:44:12 +0000
committerlhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-26 23:44:12 +0000
commit7cae34b00a5a1168dfccaeb9a92721735c56bb6c (patch)
tree08193990b5998e0258fad934562a37d62718f05b /Tools
parentec412251c4654646e44306f3772ee66baa4c76b4 (diff)
downloadedk2-7cae34b00a5a1168dfccaeb9a92721735c56bb6c.zip
edk2-7cae34b00a5a1168dfccaeb9a92721735c56bb6c.tar.gz
edk2-7cae34b00a5a1168dfccaeb9a92721735c56bb6c.tar.bz2
Fixed a spelling error
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1110 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r--Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ArchCheckBox.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ArchCheckBox.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ArchCheckBox.java
index 901ff86..35f23f6 100644
--- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ArchCheckBox.java
+++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/ArchCheckBox.java
@@ -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())) {