aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Decompile
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-01 23:44:34 -0800
committerRob Mensching <rob@firegiant.com>2021-03-02 02:21:22 -0800
commit166186a5831bd515939544a8f662938d5ae755e3 (patch)
tree35b3c4b3d0ef0bb7ea128197ffa22955a1d49590 /src/WixToolset.Core.WindowsInstaller/Decompile
parent85e611c40c3c8bf3ff3b06b52d53d046bc8ff392 (diff)
downloadwix-166186a5831bd515939544a8f662938d5ae755e3.tar.gz
wix-166186a5831bd515939544a8f662938d5ae755e3.tar.bz2
wix-166186a5831bd515939544a8f662938d5ae755e3.zip
Support the new names for AccessModifiers
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Decompile')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs4
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 c62e8153..2cc61666 100644
--- a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
@@ -1999,7 +1999,7 @@ namespace WixToolset.Core.WindowsInstaller
1999 foreach (var row in table.Rows) 1999 foreach (var row in table.Rows)
2000 { 2000 {
2001 var action = row.FieldAsString(0); 2001 var action = row.FieldAsString(0);
2002 var actionSymbol = new WixActionSymbol(null, new Identifier(AccessModifier.Public, sequenceTable, action)); 2002 var actionSymbol = new WixActionSymbol(null, new Identifier(AccessModifier.Global, sequenceTable, action));
2003 2003
2004 actionSymbol.Action = action; 2004 actionSymbol.Action = action;
2005 2005
@@ -2133,7 +2133,7 @@ namespace WixToolset.Core.WindowsInstaller
2133 { 2133 {
2134 foreach (var row in table.Rows) 2134 foreach (var row in table.Rows)
2135 { 2135 {
2136 var actionRow = new WixActionSymbol(null, new Identifier(AccessModifier.Public, sequenceTable, row.FieldAsString(0))); 2136 var actionRow = new WixActionSymbol(null, new Identifier(AccessModifier.Global, sequenceTable, row.FieldAsString(0)));
2137 2137
2138 actionRow.Action = row.FieldAsString(0); 2138 actionRow.Action = row.FieldAsString(0);
2139 2139