diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-10-26 13:40:49 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-10-26 13:56:11 -0700 |
| commit | 6eab6255f832007886c4b01861dc39d5582177ef (patch) | |
| tree | cb3e11ad38046ed74eede94126c9923e4dfc287b /src/WixToolset.Core.WindowsInstaller/Decompile | |
| parent | f01d284101e95d490497062c2dc9065423d0cf37 (diff) | |
| download | wix-6eab6255f832007886c4b01861dc39d5582177ef.tar.gz wix-6eab6255f832007886c4b01861dc39d5582177ef.tar.bz2 wix-6eab6255f832007886c4b01861dc39d5582177ef.zip | |
Update to WindowsInstallerData rename from Data
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Decompile')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs index b4d25786..ba515d69 100644 --- a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs +++ b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs | |||
| @@ -100,7 +100,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
| 100 | /// </summary> | 100 | /// </summary> |
| 101 | /// <param name="output">The output to decompile.</param> | 101 | /// <param name="output">The output to decompile.</param> |
| 102 | /// <returns>The serialized WiX source code.</returns> | 102 | /// <returns>The serialized WiX source code.</returns> |
| 103 | public XDocument Decompile(Output output) | 103 | public XDocument Decompile(WindowsInstallerData output) |
| 104 | { | 104 | { |
| 105 | if (null == output) | 105 | if (null == output) |
| 106 | { | 106 | { |
| @@ -3024,7 +3024,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
| 3024 | /// Decompile the tables. | 3024 | /// Decompile the tables. |
| 3025 | /// </summary> | 3025 | /// </summary> |
| 3026 | /// <param name="output">The output being decompiled.</param> | 3026 | /// <param name="output">The output being decompiled.</param> |
| 3027 | private void DecompileTables(Output output) | 3027 | private void DecompileTables(WindowsInstallerData output) |
| 3028 | { | 3028 | { |
| 3029 | var sortedTableNames = this.GetSortedTableNames(); | 3029 | var sortedTableNames = this.GetSortedTableNames(); |
| 3030 | 3030 | ||
| @@ -3387,7 +3387,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
| 3387 | /// <param name="output">The output being decompiled.</param> | 3387 | /// <param name="output">The output being decompiled.</param> |
| 3388 | /// <param name="tableName">The name of a table.</param> | 3388 | /// <param name="tableName">The name of a table.</param> |
| 3389 | /// <returns>true if the table should be decompiled; false otherwise.</returns> | 3389 | /// <returns>true if the table should be decompiled; false otherwise.</returns> |
| 3390 | private bool DecompilableTable(Output output, string tableName) | 3390 | private bool DecompilableTable(WindowsInstallerData output, string tableName) |
| 3391 | { | 3391 | { |
| 3392 | switch (tableName) | 3392 | switch (tableName) |
| 3393 | { | 3393 | { |
