From: Sergey Vladimirov Date: Mon, 5 Nov 2012 11:49:03 +0000 (+0000) Subject: Bug 53914 - TableRow#getTopBorder() return bottom's border X-Git-Tag: 3.10-beta1~107 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=989ccd7c27219270b82206c84c21cfac377605ae;p=poi.git Bug 53914 - TableRow#getTopBorder() return bottom's border git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1405752 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index 766157603e..f1b386fb23 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -34,6 +34,7 @@ + 53914 - TableRow#getTopBorder() return bottom's border 53282 - Avoid exception when parsing OPC relationships with non-breaking spaces 54016 - Avoid exception when parsing workbooks with DConRefRecord in row aggregate 54008 - Fixed Ant build to support build directories with blanks diff --git a/src/scratchpad/src/org/apache/poi/hwpf/usermodel/TableRow.java b/src/scratchpad/src/org/apache/poi/hwpf/usermodel/TableRow.java index 0d861dac86..a12dc63be3 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/usermodel/TableRow.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/usermodel/TableRow.java @@ -110,7 +110,7 @@ public final class TableRow extends Range public BorderCode getTopBorder() { - return _tprops.getBrcBottom(); + return _tprops.getBrcTop(); } public BorderCode getVerticalBorder()