diff options
Diffstat (limited to 'src/wix/WixToolset.Core/Compile/CompilerPayload.cs')
-rw-r--r-- | src/wix/WixToolset.Core/Compile/CompilerPayload.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wix/WixToolset.Core/Compile/CompilerPayload.cs b/src/wix/WixToolset.Core/Compile/CompilerPayload.cs index 3f423034..ea63ee8c 100644 --- a/src/wix/WixToolset.Core/Compile/CompilerPayload.cs +++ b/src/wix/WixToolset.Core/Compile/CompilerPayload.cs | |||
@@ -143,7 +143,7 @@ namespace WixToolset.Core | |||
143 | } | 143 | } |
144 | } | 144 | } |
145 | 145 | ||
146 | public WixBundlePayloadSymbol CreatePayloadSymbol(ComplexReferenceParentType parentType, string parentId, ComplexReferenceChildType previousType = ComplexReferenceChildType.Unknown, string previousId = null) | 146 | public WixBundlePayloadSymbol CreatePayloadSymbol(ComplexReferenceParentType parentType, string parentId) |
147 | { | 147 | { |
148 | WixBundlePayloadSymbol symbol = null; | 148 | WixBundlePayloadSymbol symbol = null; |
149 | 149 | ||
@@ -179,7 +179,7 @@ namespace WixToolset.Core | |||
179 | Version = this.Version, | 179 | Version = this.Version, |
180 | }); | 180 | }); |
181 | 181 | ||
182 | this.Core.CreateGroupAndOrderingRows(this.SourceLineNumbers, parentType, parentId, ComplexReferenceChildType.Payload, symbol.Id.Id, previousType, previousId); | 182 | this.Core.CreateGroupAndOrderingRows(this.SourceLineNumbers, parentType, parentId, ComplexReferenceChildType.Payload, symbol.Id.Id, ComplexReferenceChildType.Unknown, null); |
183 | } | 183 | } |
184 | 184 | ||
185 | return symbol; | 185 | return symbol; |