aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/ExtensibilityServices
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/ExtensibilityServices')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/ExtensibilityServices/WindowsInstallerBackendHelper.cs8
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)