mirror of https://github.com/apache/poi.git
Workbook now works with new signature of SupBook
Property - kludged to compile for HPSF PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352603 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
25a8e14713
commit
8c3d5d665e
|
@ -148,7 +148,7 @@ public class Property
|
||||||
* list.
|
* list.
|
||||||
*/
|
*/
|
||||||
public Property(final int id, final byte[] src, final int offset,
|
public Property(final int id, final byte[] src, final int offset,
|
||||||
final int length)
|
int length)
|
||||||
{
|
{
|
||||||
this.id = id;
|
this.id = id;
|
||||||
|
|
||||||
|
|
|
@ -1750,7 +1750,7 @@ public class Workbook {
|
||||||
SupBookRecord supbook = new SupBookRecord();
|
SupBookRecord supbook = new SupBookRecord();
|
||||||
|
|
||||||
supbook.setNumberOfSheets((short)getNumSheets());
|
supbook.setNumberOfSheets((short)getNumSheets());
|
||||||
supbook.setFlag();
|
//supbook.setFlag();
|
||||||
|
|
||||||
records.add(supbookpos + 1 , supbook);
|
records.add(supbookpos + 1 , supbook);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue