diff options
author | jlin16 <jlin16@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-30 09:37:44 +0000 |
---|---|---|
committer | jlin16 <jlin16@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-30 09:37:44 +0000 |
commit | b315127350595db18418a44033ad5afdd4a6d856 (patch) | |
tree | c3e6b01cc9abd0462a30b651ac8f194ea08e1f82 | |
parent | 3d64815921b27cf39e999457cee7b39e8e037baf (diff) | |
download | edk2-platforms-b315127350595db18418a44033ad5afdd4a6d856.tar.xz |
change boolean PCD value to capital "TRUE" "FALSE".
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1411 6f19259b-4bc3-4df7-8a09-765794883524
4 files changed, 7 insertions, 7 deletions
diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/packaging/ui/SpdPackageHeaders.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/packaging/ui/SpdPackageHeaders.java index 018c377d5d..1deccad78b 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/packaging/ui/SpdPackageHeaders.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/packaging/ui/SpdPackageHeaders.java @@ -591,7 +591,7 @@ public class SpdPackageHeaders extends IInternalFrame implements TableModelListe Tools.resizeComponentWidth(this.jComboBoxSelect, this.getWidth(), intPreferredWidth);
Tools.resizeComponentWidth(this.jTextField, this.getWidth(), intPreferredWidth);
- Tools.resizeComponentWidth(this.jScrollPane, this.getWidth(), intPreferredWidth);
+ Tools.resizeComponentWidth(this.jScrollPanePkgHdr, this.getWidth(), intPreferredWidth);
Tools.relocateComponentX(this.jButtonBrowse, this.getWidth(), this.getPreferredSize().width, 30);
}
diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdBuildOptions.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdBuildOptions.java index 257699915b..ada2a82a11 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdBuildOptions.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdBuildOptions.java @@ -852,7 +852,7 @@ public class FpdBuildOptions extends IInternalFrame { private JScrollPane getJScrollPaneFfsSection() {
if (jScrollPaneFfsSection == null) {
jScrollPaneFfsSection = new JScrollPane();
- jScrollPaneFfsSection.setPreferredSize(new java.awt.Dimension(500, 80));
+// jScrollPaneFfsSection.setPreferredSize(new java.awt.Dimension(500, 80));
jScrollPaneFfsSection.setViewportView(getJTableFfsSection());
}
return jScrollPaneFfsSection;
@@ -916,7 +916,7 @@ public class FpdBuildOptions extends IInternalFrame { private JScrollPane getJScrollPaneFfsSubSection() {
if (jScrollPaneFfsSubSection == null) {
jScrollPaneFfsSubSection = new JScrollPane();
- jScrollPaneFfsSubSection.setPreferredSize(new java.awt.Dimension(500, 90));
+// jScrollPaneFfsSubSection.setPreferredSize(new java.awt.Dimension(500, 90));
jScrollPaneFfsSubSection.setViewportView(getJTableFfsSubSection());
}
return jScrollPaneFfsSubSection;
@@ -1165,7 +1165,7 @@ public class FpdBuildOptions extends IInternalFrame { private JScrollPane getJScrollPaneFfsSections() {
if (jScrollPaneFfsSections == null) {
jScrollPaneFfsSections = new JScrollPane();
- jScrollPaneFfsSections.setPreferredSize(new java.awt.Dimension(500, 80));
+// jScrollPaneFfsSections.setPreferredSize(new java.awt.Dimension(500, 80));
jScrollPaneFfsSections.setViewportView(getJTableFfsSections());
}
return jScrollPaneFfsSections;
diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java index 0897ac030b..528bdfc50f 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java @@ -1147,7 +1147,7 @@ public class FpdFileContents { fpdPcd.setValue("0");
}
if (dataType.equals("BOOLEAN")){
- fpdPcd.setValue("false");
+ fpdPcd.setValue("FALSE");
}
if (dataType.equals("VOID*")) {
fpdPcd.setValue("");
diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdModuleSA.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdModuleSA.java index b6c92d6c3e..6f591b7d32 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdModuleSA.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdModuleSA.java @@ -1565,8 +1565,8 @@ private JComboBox getJComboBoxFeatureFlagValue() { jComboBoxFeatureFlagValue = new JComboBox();
jComboBoxFeatureFlagValue.setPreferredSize(new java.awt.Dimension(100,20));
jComboBoxFeatureFlagValue.setVisible(false);
- jComboBoxFeatureFlagValue.addItem("true");
- jComboBoxFeatureFlagValue.addItem("false");
+ jComboBoxFeatureFlagValue.addItem("TRUE");
+ jComboBoxFeatureFlagValue.addItem("FALSE");
}
return jComboBoxFeatureFlagValue;
}
|