aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-07-26 23:06:40 -0400
committerBob Arnson <bob@firegiant.com>2020-07-26 23:13:18 -0400
commit581897da13bd8a20eea0c2079262caaa06cde676 (patch)
tree7af47231adcb2eef5458db3d965b3abadbb6ab04 /src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
parentb62a7a0beb7ceb7987de28ec768c7814cadb83b9 (diff)
downloadwix-581897da13bd8a20eea0c2079262caaa06cde676.tar.gz
wix-581897da13bd8a20eea0c2079262caaa06cde676.tar.bz2
wix-581897da13bd8a20eea0c2079262caaa06cde676.zip
Fix Control symbol dehydration to MSI output.
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
index 663931b9..de3123ee 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
@@ -349,9 +349,10 @@ namespace WixToolset.Core.WindowsInstaller.Bind
349 row[5] = symbol.Width; 349 row[5] = symbol.Width;
350 row[6] = symbol.Height; 350 row[6] = symbol.Height;
351 row[7] = attributes; 351 row[7] = attributes;
352 row[8] = text; 352 row[8] = symbol.Property;
353 row[9] = symbol.NextControlRef; 353 row[9] = text;
354 row[10] = symbol.Help; 354 row[10] = symbol.NextControlRef;
355 row[11] = symbol.Help;
355 } 356 }
356 357
357 private void AddControlEventSymbol(ControlEventSymbol symbol) 358 private void AddControlEventSymbol(ControlEventSymbol symbol)