Remove references to "Output" and use "Data" instead
Rob Mensching committed
Mar 2, 2021 at 00:48 UTC
d56e7495c0eceaa1a67bbb324f8c5d7e34566081
2 files changed
+5
-5
src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs
+1
-1
@@ -76,7 +76,7 @@ namespace WixToolset.Extensibility
76
{
77
if (this.TableDefinitions.Any(t => t.SymbolDefinition == symbol.Definition))
78
{
79
- return this.BackendHelper.TryAddSymbolToOutputMatchingTableDefinitions(section, symbol, data, tableDefinitions);
79
+ return this.BackendHelper.TryAddSymbolToMatchingTableDefinitions(section, symbol, data, tableDefinitions);
80
}
81
82
return false;
src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs
+4
-4
@@ -15,10 +15,10 @@ namespace WixToolset.Extensibility.Services
15
/// </summary>
16
/// <param name="section">Parent section.</param>
17
/// <param name="symbol">Symbol with line information for the row.</param>
18
- /// <param name="output">Current context.</param>
18
+ /// <param name="data">Windows Installer data.</param>
19
/// <param name="tableDefinition">Table definition for the row.</param>
20
/// <returns></returns>
21
- Row CreateRow(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinition tableDefinition);
21
+ Row CreateRow(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData data, TableDefinition tableDefinition);
22
23
/// <summary>
24
/// Looks up the registered <see cref="TableDefinition"/> for the given <see cref="IntermediateSymbol"/> and creates a <see cref="Row"/> in that table.
@@ -27,9 +27,9 @@ namespace WixToolset.Extensibility.Services
27
/// </summary>
28
/// <param name="section">Parent section.</param>
29
/// <param name="symbol">Symbol to create the row from.</param>
30
- /// <param name="output">Current context.</param>
30
+ /// <param name="data">Windows Installer data.</param>
31
/// <param name="tableDefinitions">Table definitions that have been registered with the binder.</param>
32
/// <returns>True if a row was created.</returns>
33
- bool TryAddSymbolToOutputMatchingTableDefinitions(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinitionCollection tableDefinitions);
33
+ bool TryAddSymbolToMatchingTableDefinitions(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData data, TableDefinitionCollection tableDefinitions);
34
}
35
}