Integrate ImmediateSection no longer uses codepage
Rob Mensching committed
Apr 3, 2021 at 18:26 UTC
f4e79b704aa2eea60c57b4df45319ea57b9d3a53
1 file changed
+1
-1
src/WixToolset.Converters.Symbolizer/ConvertSymbols.cs
+1
-1
@@ -22,7 +22,7 @@ namespace WixToolset.Converters.Symbolizer
22
public static Intermediate ConvertOutput(Wix3.Output output)
23
#pragma warning restore 1591
24
{
25
- var section = new IntermediateSection(String.Empty, OutputType3ToSectionType4(output.Type), output.Codepage);
25
+ var section = new IntermediateSection(String.Empty, OutputType3ToSectionType4(output.Type));
26
27
var wixMediaByDiskId = IndexWixMediaTableByDiskId(output);
28
var componentsById = IndexById<Wix3.Row>(output, "Component");