diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs | 2 | ||||
| -rw-r--r-- | src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs | 8 |
2 files changed, 5 insertions, 5 deletions
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 | |||
| 76 | { | 76 | { |
| 77 | if (this.TableDefinitions.Any(t => t.SymbolDefinition == symbol.Definition)) | 77 | if (this.TableDefinitions.Any(t => t.SymbolDefinition == symbol.Definition)) |
| 78 | { | 78 | { |
| 79 | return this.BackendHelper.TryAddSymbolToOutputMatchingTableDefinitions(section, symbol, data, tableDefinitions); | 79 | return this.BackendHelper.TryAddSymbolToMatchingTableDefinitions(section, symbol, data, tableDefinitions); |
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | return false; | 82 | 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 | |||
| 15 | /// </summary> | 15 | /// </summary> |
| 16 | /// <param name="section">Parent section.</param> | 16 | /// <param name="section">Parent section.</param> |
| 17 | /// <param name="symbol">Symbol with line information for the row.</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> | 19 | /// <param name="tableDefinition">Table definition for the row.</param> |
| 20 | /// <returns></returns> | 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 | 22 | ||
| 23 | /// <summary> | 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. | 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> | 27 | /// </summary> |
| 28 | /// <param name="section">Parent section.</param> | 28 | /// <param name="section">Parent section.</param> |
| 29 | /// <param name="symbol">Symbol to create the row from.</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> | 31 | /// <param name="tableDefinitions">Table definitions that have been registered with the binder.</param> |
| 32 | /// <returns>True if a row was created.</returns> | 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 | } | 34 | } |
| 35 | } | 35 | } |
