diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-03-02 01:49:28 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-02 02:21:22 -0800 |
| commit | 85e611c40c3c8bf3ff3b06b52d53d046bc8ff392 (patch) | |
| tree | 88687390ed6041716580ffd4f288bdc2efe03f86 /src/WixToolset.Core.WindowsInstaller/ExtensibilityServices/WindowsInstallerBackendHelper.cs | |
| parent | 16c221a8663361ff29e140a0a395d3173daa0625 (diff) | |
| download | wix-85e611c40c3c8bf3ff3b06b52d53d046bc8ff392.tar.gz wix-85e611c40c3c8bf3ff3b06b52d53d046bc8ff392.tar.bz2 wix-85e611c40c3c8bf3ff3b06b52d53d046bc8ff392.zip | |
Remove references to "Output" and use "Data" instead
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/ExtensibilityServices/WindowsInstallerBackendHelper.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/ExtensibilityServices/WindowsInstallerBackendHelper.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/ExtensibilityServices/WindowsInstallerBackendHelper.cs b/src/WixToolset.Core.WindowsInstaller/ExtensibilityServices/WindowsInstallerBackendHelper.cs index 248dea9b..09194d4e 100644 --- a/src/WixToolset.Core.WindowsInstaller/ExtensibilityServices/WindowsInstallerBackendHelper.cs +++ b/src/WixToolset.Core.WindowsInstaller/ExtensibilityServices/WindowsInstallerBackendHelper.cs | |||
| @@ -34,9 +34,9 @@ namespace WixToolset.Core.WindowsInstaller.ExtensibilityServices | |||
| 34 | 34 | ||
| 35 | #region IWindowsInstallerBackendHelper interfaces | 35 | #region IWindowsInstallerBackendHelper interfaces |
| 36 | 36 | ||
| 37 | public Row CreateRow(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinition tableDefinition) | 37 | public Row CreateRow(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData data, TableDefinition tableDefinition) |
| 38 | { | 38 | { |
| 39 | var table = output.EnsureTable(tableDefinition); | 39 | var table = data.EnsureTable(tableDefinition); |
| 40 | 40 | ||
| 41 | var row = table.CreateRow(symbol.SourceLineNumbers); | 41 | var row = table.CreateRow(symbol.SourceLineNumbers); |
| 42 | row.SectionId = section.Id; | 42 | row.SectionId = section.Id; |
| @@ -44,7 +44,7 @@ namespace WixToolset.Core.WindowsInstaller.ExtensibilityServices | |||
| 44 | return row; | 44 | return row; |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | public bool TryAddSymbolToOutputMatchingTableDefinitions(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinitionCollection tableDefinitions) | 47 | public bool TryAddSymbolToMatchingTableDefinitions(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData data, TableDefinitionCollection tableDefinitions) |
| 48 | { | 48 | { |
| 49 | var tableDefinition = tableDefinitions.FirstOrDefault(t => t.SymbolDefinition?.Name == symbol.Definition.Name); | 49 | var tableDefinition = tableDefinitions.FirstOrDefault(t => t.SymbolDefinition?.Name == symbol.Definition.Name); |
| 50 | if (tableDefinition == null) | 50 | if (tableDefinition == null) |
| @@ -52,7 +52,7 @@ namespace WixToolset.Core.WindowsInstaller.ExtensibilityServices | |||
| 52 | return false; | 52 | return false; |
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | var row = this.CreateRow(section, symbol, output, tableDefinition); | 55 | var row = this.CreateRow(section, symbol, data, tableDefinition); |
| 56 | var rowOffset = 0; | 56 | var rowOffset = 0; |
| 57 | 57 | ||
| 58 | if (tableDefinition.SymbolIdIsPrimaryKey) | 58 | if (tableDefinition.SymbolIdIsPrimaryKey) |
