]> git.proxmox.com Git - mirror_edk2.git/commitdiff
change boolean PCD value to capital "TRUE" "FALSE".
authorjlin16 <jlin16@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 30 Aug 2006 09:37:44 +0000 (09:37 +0000)
committerjlin16 <jlin16@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 30 Aug 2006 09:37:44 +0000 (09:37 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1411 6f19259b-4bc3-4df7-8a09-765794883524

Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/packaging/ui/SpdPackageHeaders.java
Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdBuildOptions.java
Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java
Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdModuleSA.java

index 018c377d5d8ed666186ec190c2b34ec12ef1bc7e..1deccad78b02c5ac73e12947f7c0f3f8d2bc3f53 100644 (file)
@@ -591,7 +591,7 @@ public class SpdPackageHeaders extends IInternalFrame implements TableModelListe
         \r
         Tools.resizeComponentWidth(this.jComboBoxSelect, this.getWidth(), intPreferredWidth);\r
         Tools.resizeComponentWidth(this.jTextField, this.getWidth(), intPreferredWidth);\r
-        Tools.resizeComponentWidth(this.jScrollPane, this.getWidth(), intPreferredWidth);\r
+        Tools.resizeComponentWidth(this.jScrollPanePkgHdr, this.getWidth(), intPreferredWidth);\r
         Tools.relocateComponentX(this.jButtonBrowse, this.getWidth(), this.getPreferredSize().width, 30);\r
     }\r
     \r
index 257699915b388aff2a712384beea1d0521dbde33..ada2a82a11fb9118b3b2c65f1ce5e1364ca9e66a 100644 (file)
@@ -852,7 +852,7 @@ public class FpdBuildOptions extends IInternalFrame {
     private JScrollPane getJScrollPaneFfsSection() {\r
         if (jScrollPaneFfsSection == null) {\r
             jScrollPaneFfsSection = new JScrollPane();\r
-            jScrollPaneFfsSection.setPreferredSize(new java.awt.Dimension(500, 80));\r
+//            jScrollPaneFfsSection.setPreferredSize(new java.awt.Dimension(500, 80));\r
             jScrollPaneFfsSection.setViewportView(getJTableFfsSection());\r
         }\r
         return jScrollPaneFfsSection;\r
@@ -916,7 +916,7 @@ public class FpdBuildOptions extends IInternalFrame {
     private JScrollPane getJScrollPaneFfsSubSection() {\r
         if (jScrollPaneFfsSubSection == null) {\r
             jScrollPaneFfsSubSection = new JScrollPane();\r
-            jScrollPaneFfsSubSection.setPreferredSize(new java.awt.Dimension(500, 90));\r
+//            jScrollPaneFfsSubSection.setPreferredSize(new java.awt.Dimension(500, 90));\r
             jScrollPaneFfsSubSection.setViewportView(getJTableFfsSubSection());\r
         }\r
         return jScrollPaneFfsSubSection;\r
@@ -1165,7 +1165,7 @@ public class FpdBuildOptions extends IInternalFrame {
     private JScrollPane getJScrollPaneFfsSections() {\r
         if (jScrollPaneFfsSections == null) {\r
             jScrollPaneFfsSections = new JScrollPane();\r
-            jScrollPaneFfsSections.setPreferredSize(new java.awt.Dimension(500, 80));\r
+//            jScrollPaneFfsSections.setPreferredSize(new java.awt.Dimension(500, 80));\r
             jScrollPaneFfsSections.setViewportView(getJTableFfsSections());\r
         }\r
         return jScrollPaneFfsSections;\r
index 0897ac030beef0b583a77c230e0b55606975d60d..528bdfc50fbd5f505837d6b166a5649d7d4540be 100644 (file)
@@ -1147,7 +1147,7 @@ public class FpdFileContents {
                 fpdPcd.setValue("0");\r
             }\r
             if (dataType.equals("BOOLEAN")){\r
-                fpdPcd.setValue("false");\r
+                fpdPcd.setValue("FALSE");\r
             }\r
             if (dataType.equals("VOID*")) {\r
                 fpdPcd.setValue("");\r
index b6c92d6c3e47e479f106975250ccb2890fd2f9a2..6f591b7d328e4cbd4d92927fd17edbe8bfc397e5 100644 (file)
@@ -1565,8 +1565,8 @@ private JComboBox getJComboBoxFeatureFlagValue() {
         jComboBoxFeatureFlagValue = new JComboBox();\r
         jComboBoxFeatureFlagValue.setPreferredSize(new java.awt.Dimension(100,20));\r
         jComboBoxFeatureFlagValue.setVisible(false);\r
-        jComboBoxFeatureFlagValue.addItem("true");\r
-        jComboBoxFeatureFlagValue.addItem("false");\r
+        jComboBoxFeatureFlagValue.addItem("TRUE");\r
+        jComboBoxFeatureFlagValue.addItem("FALSE");\r
     }\r
     return jComboBoxFeatureFlagValue;\r
 }\r