diff options
author | jlin16 <jlin16@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-25 04:14:20 +0000 |
---|---|---|
committer | jlin16 <jlin16@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-25 04:14:20 +0000 |
commit | 8d29653d55857fb16ac33b427d54c26e89d1ef4a (patch) | |
tree | 641eac482eb11f5668459402a3c44744ba028f6f /Tools/Source | |
parent | 7d828c05afc76c2088b1c73a269eb0c4bcce9653 (diff) | |
download | edk2-platforms-8d29653d55857fb16ac33b427d54c26e89d1ef4a.tar.xz |
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@21 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source')
-rw-r--r-- | Tools/Source/PackageEditor/src/org/tianocore/packaging/UpdateGuids.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/Source/PackageEditor/src/org/tianocore/packaging/UpdateGuids.java b/Tools/Source/PackageEditor/src/org/tianocore/packaging/UpdateGuids.java index 294549c9c1..943a782f4e 100644 --- a/Tools/Source/PackageEditor/src/org/tianocore/packaging/UpdateGuids.java +++ b/Tools/Source/PackageEditor/src/org/tianocore/packaging/UpdateGuids.java @@ -155,6 +155,9 @@ public class UpdateGuids extends JFrame implements ActionListener { Remove original GUID declarations before saving updated ones
**/
protected void save() {
+ if (jTable.isEditing()) {
+ jTable.getCellEditor().stopCellEditing();
+ }
sfc.removeSpdGuidDeclaration();
int rowCount = model.getRowCount();
int i = 0;
|