aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-23 17:07:13 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 17:07:13 -0700
commita6be2d64ff43f0ddd81f448dd889b4458bd734b0 (patch)
tree6277883a08ac34dc3f8847dfb5c4203465ad47b3 /src
parent04d58c720b05a50510c7a8cf14c11749b0b15020 (diff)
downloadwix-a6be2d64ff43f0ddd81f448dd889b4458bd734b0.tar.gz
wix-a6be2d64ff43f0ddd81f448dd889b4458bd734b0.tar.bz2
wix-a6be2d64ff43f0ddd81f448dd889b4458bd734b0.zip
Shortcut ShowCmd is nullable
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
index 9001b704..e7269058 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
@@ -719,7 +719,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
719 row[7] = tuple.Hotkey; 719 row[7] = tuple.Hotkey;
720 row[8] = tuple.IconRef; 720 row[8] = tuple.IconRef;
721 row[9] = tuple.IconIndex; 721 row[9] = tuple.IconIndex;
722 row[10] = (int)tuple.Show; 722 row[10] = (int?)tuple.Show;
723 row[11] = tuple.WorkingDirectory; 723 row[11] = tuple.WorkingDirectory;
724 row[12] = tuple.DisplayResourceDll; 724 row[12] = tuple.DisplayResourceDll;
725 row[13] = tuple.DisplayResourceId; 725 row[13] = tuple.DisplayResourceId;