mirror of https://github.com/apache/poi.git
fixes for article
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353571 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dd9f6f8eb3
commit
70b934ee0c
|
@ -336,7 +336,7 @@ public class Range
|
|||
|
||||
int insertIndex = _end - tp.getStart();
|
||||
|
||||
if (tp.getStringBuffer().charAt(_end - 1) == '\r')
|
||||
if (tp.getStringBuffer().charAt(_end - 1) == '\r' && text.charAt(0) != '\u0007')
|
||||
{
|
||||
insertIndex--;
|
||||
}
|
||||
|
|
|
@ -37,6 +37,11 @@ public class Section
|
|||
return TYPE_SECTION;
|
||||
}
|
||||
|
||||
public int getNumColumns()
|
||||
{
|
||||
return _props.getCcolM1() + 1;
|
||||
}
|
||||
|
||||
public Object clone()
|
||||
throws CloneNotSupportedException
|
||||
{
|
||||
|
|
|
@ -36,12 +36,12 @@ public class Table
|
|||
while (rowEnd < numParagraphs)
|
||||
{
|
||||
Paragraph p = getParagraph(rowEnd);
|
||||
rowEnd++;
|
||||
if (p.isTableRowEnd() && p.getTableLevel() == levelNum)
|
||||
{
|
||||
_rows.add(new TableRow(rowStart, rowEnd, this, levelNum));
|
||||
rowStart = rowEnd;
|
||||
}
|
||||
rowEnd++;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue