diff options
author | Bob Arnson <bob@firegiant.com> | 2020-08-26 20:34:16 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-08-26 20:36:45 -0400 |
commit | 8634b7f60adad8d09834e77aa0e4a0f26451f845 (patch) | |
tree | e48e4a71e59027c51d6030d76cc791e6203cba68 | |
parent | 46278b45b909964ffc6ec3f4fccef07c4931bf55 (diff) | |
download | wix-8634b7f60adad8d09834e77aa0e4a0f26451f845.tar.gz wix-8634b7f60adad8d09834e77aa0e4a0f26451f845.tar.bz2 wix-8634b7f60adad8d09834e77aa0e4a0f26451f845.zip |
A couple of minor decompiler fixes.
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs index c483fb80..591ff5ef 100644 --- a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs +++ b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs | |||
@@ -3147,7 +3147,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
3147 | { | 3147 | { |
3148 | var progressText = new XElement(Names.ProgressTextElement, | 3148 | var progressText = new XElement(Names.ProgressTextElement, |
3149 | new XAttribute("Action", row.FieldAsString(0)), | 3149 | new XAttribute("Action", row.FieldAsString(0)), |
3150 | row.IsColumnNull(1) ? null : new XAttribute("Content", row.FieldAsString(1)), | 3150 | row.IsColumnNull(1) ? null : new XAttribute("Message", row.FieldAsString(1)), |
3151 | row.IsColumnNull(2) ? null : new XAttribute("Template", row.FieldAsString(2))); | 3151 | row.IsColumnNull(2) ? null : new XAttribute("Template", row.FieldAsString(2))); |
3152 | 3152 | ||
3153 | this.UIElement.Add(progressText); | 3153 | this.UIElement.Add(progressText); |
@@ -4144,7 +4144,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
4144 | { | 4144 | { |
4145 | var xComponent = new XElement(Names.ComponentElement, | 4145 | var xComponent = new XElement(Names.ComponentElement, |
4146 | new XAttribute("Id", row.FieldAsString(0)), | 4146 | new XAttribute("Id", row.FieldAsString(0)), |
4147 | new XAttribute("Guid", row.FieldAsString(1))); | 4147 | row.IsColumnEmpty(1) ? null : new XAttribute("Guid", row.FieldAsString(1))); |
4148 | 4148 | ||
4149 | var attributes = row.FieldAsInteger(3); | 4149 | var attributes = row.FieldAsInteger(3); |
4150 | 4150 | ||