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
This commit is contained in:
@@ -591,7 +591,7 @@ public class SpdPackageHeaders extends IInternalFrame implements TableModelListe
|
|||||||
|
|
||||||
Tools.resizeComponentWidth(this.jComboBoxSelect, this.getWidth(), intPreferredWidth);
|
Tools.resizeComponentWidth(this.jComboBoxSelect, this.getWidth(), intPreferredWidth);
|
||||||
Tools.resizeComponentWidth(this.jTextField, 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);
|
Tools.relocateComponentX(this.jButtonBrowse, this.getWidth(), this.getPreferredSize().width, 30);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -852,7 +852,7 @@ public class FpdBuildOptions extends IInternalFrame {
|
|||||||
private JScrollPane getJScrollPaneFfsSection() {
|
private JScrollPane getJScrollPaneFfsSection() {
|
||||||
if (jScrollPaneFfsSection == null) {
|
if (jScrollPaneFfsSection == null) {
|
||||||
jScrollPaneFfsSection = new JScrollPane();
|
jScrollPaneFfsSection = new JScrollPane();
|
||||||
jScrollPaneFfsSection.setPreferredSize(new java.awt.Dimension(500, 80));
|
// jScrollPaneFfsSection.setPreferredSize(new java.awt.Dimension(500, 80));
|
||||||
jScrollPaneFfsSection.setViewportView(getJTableFfsSection());
|
jScrollPaneFfsSection.setViewportView(getJTableFfsSection());
|
||||||
}
|
}
|
||||||
return jScrollPaneFfsSection;
|
return jScrollPaneFfsSection;
|
||||||
@@ -916,7 +916,7 @@ public class FpdBuildOptions extends IInternalFrame {
|
|||||||
private JScrollPane getJScrollPaneFfsSubSection() {
|
private JScrollPane getJScrollPaneFfsSubSection() {
|
||||||
if (jScrollPaneFfsSubSection == null) {
|
if (jScrollPaneFfsSubSection == null) {
|
||||||
jScrollPaneFfsSubSection = new JScrollPane();
|
jScrollPaneFfsSubSection = new JScrollPane();
|
||||||
jScrollPaneFfsSubSection.setPreferredSize(new java.awt.Dimension(500, 90));
|
// jScrollPaneFfsSubSection.setPreferredSize(new java.awt.Dimension(500, 90));
|
||||||
jScrollPaneFfsSubSection.setViewportView(getJTableFfsSubSection());
|
jScrollPaneFfsSubSection.setViewportView(getJTableFfsSubSection());
|
||||||
}
|
}
|
||||||
return jScrollPaneFfsSubSection;
|
return jScrollPaneFfsSubSection;
|
||||||
@@ -1165,7 +1165,7 @@ public class FpdBuildOptions extends IInternalFrame {
|
|||||||
private JScrollPane getJScrollPaneFfsSections() {
|
private JScrollPane getJScrollPaneFfsSections() {
|
||||||
if (jScrollPaneFfsSections == null) {
|
if (jScrollPaneFfsSections == null) {
|
||||||
jScrollPaneFfsSections = new JScrollPane();
|
jScrollPaneFfsSections = new JScrollPane();
|
||||||
jScrollPaneFfsSections.setPreferredSize(new java.awt.Dimension(500, 80));
|
// jScrollPaneFfsSections.setPreferredSize(new java.awt.Dimension(500, 80));
|
||||||
jScrollPaneFfsSections.setViewportView(getJTableFfsSections());
|
jScrollPaneFfsSections.setViewportView(getJTableFfsSections());
|
||||||
}
|
}
|
||||||
return jScrollPaneFfsSections;
|
return jScrollPaneFfsSections;
|
||||||
|
@@ -1147,7 +1147,7 @@ public class FpdFileContents {
|
|||||||
fpdPcd.setValue("0");
|
fpdPcd.setValue("0");
|
||||||
}
|
}
|
||||||
if (dataType.equals("BOOLEAN")){
|
if (dataType.equals("BOOLEAN")){
|
||||||
fpdPcd.setValue("false");
|
fpdPcd.setValue("FALSE");
|
||||||
}
|
}
|
||||||
if (dataType.equals("VOID*")) {
|
if (dataType.equals("VOID*")) {
|
||||||
fpdPcd.setValue("");
|
fpdPcd.setValue("");
|
||||||
|
@@ -1565,8 +1565,8 @@ private JComboBox getJComboBoxFeatureFlagValue() {
|
|||||||
jComboBoxFeatureFlagValue = new JComboBox();
|
jComboBoxFeatureFlagValue = new JComboBox();
|
||||||
jComboBoxFeatureFlagValue.setPreferredSize(new java.awt.Dimension(100,20));
|
jComboBoxFeatureFlagValue.setPreferredSize(new java.awt.Dimension(100,20));
|
||||||
jComboBoxFeatureFlagValue.setVisible(false);
|
jComboBoxFeatureFlagValue.setVisible(false);
|
||||||
jComboBoxFeatureFlagValue.addItem("true");
|
jComboBoxFeatureFlagValue.addItem("TRUE");
|
||||||
jComboBoxFeatureFlagValue.addItem("false");
|
jComboBoxFeatureFlagValue.addItem("FALSE");
|
||||||
}
|
}
|
||||||
return jComboBoxFeatureFlagValue;
|
return jComboBoxFeatureFlagValue;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user