From d56e7495c0eceaa1a67bbb324f8c5d7e34566081 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 2 Mar 2021 00:48:46 -0800 Subject: Remove references to "Output" and use "Data" instead --- .../BaseWindowsInstallerBackendBinderExtension.cs | 2 +- .../Services/IWindowsInstallerBackendHelper.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs b/src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs index 47777fae..93d8a1df 100644 --- a/src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs +++ b/src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs @@ -76,7 +76,7 @@ namespace WixToolset.Extensibility { if (this.TableDefinitions.Any(t => t.SymbolDefinition == symbol.Definition)) { - return this.BackendHelper.TryAddSymbolToOutputMatchingTableDefinitions(section, symbol, data, tableDefinitions); + return this.BackendHelper.TryAddSymbolToMatchingTableDefinitions(section, symbol, data, tableDefinitions); } return false; diff --git a/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs b/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs index 23e046fa..80d49d54 100644 --- a/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs +++ b/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs @@ -15,10 +15,10 @@ namespace WixToolset.Extensibility.Services /// /// Parent section. /// Symbol with line information for the row. - /// Current context. + /// Windows Installer data. /// Table definition for the row. /// - Row CreateRow(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinition tableDefinition); + Row CreateRow(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData data, TableDefinition tableDefinition); /// /// Looks up the registered for the given and creates a in that table. @@ -27,9 +27,9 @@ namespace WixToolset.Extensibility.Services /// /// Parent section. /// Symbol to create the row from. - /// Current context. + /// Windows Installer data. /// Table definitions that have been registered with the binder. /// True if a row was created. - bool TryAddSymbolToOutputMatchingTableDefinitions(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinitionCollection tableDefinitions); + bool TryAddSymbolToMatchingTableDefinitions(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData data, TableDefinitionCollection tableDefinitions); } } -- cgit v1.2.3-55-g6feb