From 8634b7f60adad8d09834e77aa0e4a0f26451f845 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Wed, 26 Aug 2020 20:34:16 -0400 Subject: A couple of minor decompiler fixes. --- src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 { var progressText = new XElement(Names.ProgressTextElement, new XAttribute("Action", row.FieldAsString(0)), - row.IsColumnNull(1) ? null : new XAttribute("Content", row.FieldAsString(1)), + row.IsColumnNull(1) ? null : new XAttribute("Message", row.FieldAsString(1)), row.IsColumnNull(2) ? null : new XAttribute("Template", row.FieldAsString(2))); this.UIElement.Add(progressText); @@ -4144,7 +4144,7 @@ namespace WixToolset.Core.WindowsInstaller { var xComponent = new XElement(Names.ComponentElement, new XAttribute("Id", row.FieldAsString(0)), - new XAttribute("Guid", row.FieldAsString(1))); + row.IsColumnEmpty(1) ? null : new XAttribute("Guid", row.FieldAsString(1))); var attributes = row.FieldAsInteger(3); -- cgit v1.2.3-55-g6feb