Commit 3fec2226 authored by GoshaZotov's avatar GoshaZotov

fix bug 34368

parent a3190ba5
...@@ -1755,7 +1755,8 @@ UndoRedoData_AutoFilter.prototype = { ...@@ -1755,7 +1755,8 @@ UndoRedoData_AutoFilter.prototype = {
if(tablePart) if(tablePart)
{ {
var memory = new AscCommon.CMemory(); var memory = new AscCommon.CMemory();
var oBinaryTableWriter = new AscCommonExcel.BinaryTableWriter(memory); var aDxfs = [];
var oBinaryTableWriter = new AscCommonExcel.BinaryTableWriter(memory, aDxfs);
oBinaryTableWriter.WriteTable(tablePart); oBinaryTableWriter.WriteTable(tablePart);
tablePart = memory.GetBase64Memory(); tablePart = memory.GetBase64Memory();
} }
...@@ -1808,7 +1809,8 @@ UndoRedoData_AutoFilter.prototype = { ...@@ -1808,7 +1809,8 @@ UndoRedoData_AutoFilter.prototype = {
var oBinaryFileReader = new AscCommonExcel.BinaryFileReader(); var oBinaryFileReader = new AscCommonExcel.BinaryFileReader();
nCurOffset = oBinaryFileReader.getbase64DecodedData2(value, 0, stream, nCurOffset); nCurOffset = oBinaryFileReader.getbase64DecodedData2(value, 0, stream, nCurOffset);
var oBinaryTableReader = new AscCommonExcel.Binary_TableReader(stream); var dxfs = [];
var oBinaryTableReader = new AscCommonExcel.Binary_TableReader(stream, null, null, dxfs);
oBinaryTableReader.stream = stream; oBinaryTableReader.stream = stream;
oBinaryTableReader.oReadResult = { oBinaryTableReader.oReadResult = {
tableCustomFunc: [] tableCustomFunc: []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment