Browse Source

fix broken test case

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892144 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_1_0
PJ Fanning 2 years ago
parent
commit
5e15f7bf77

+ 8
- 2
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFHyperlink.java View File

@@ -341,8 +341,11 @@ public class XSSFHyperlink implements Hyperlink {
*/
@Override
public void setFirstColumn(int col) {
int lastColumn = getLastColumn();
if (col > lastColumn) lastColumn = col;
String firstCellRef = CellReference.convertNumToColString(col) + (getFirstRow() + 1);
setCellRange(firstCellRef + ":" + buildLastCellReference().formatAsString());
String lastCellRef = CellReference.convertNumToColString(lastColumn) + (getLastRow() + 1);
setCellRange(firstCellRef + ":" + lastCellRef);
}

/**
@@ -363,8 +366,11 @@ public class XSSFHyperlink implements Hyperlink {
*/
@Override
public void setFirstRow(int row) {
int lastRow = getLastRow();
if (row > lastRow) lastRow = row;
String firstCellRef = CellReference.convertNumToColString(getFirstColumn()) + (row + 1);
setCellRange(firstCellRef + ":" + buildLastCellReference().formatAsString());
String lastCellRef = CellReference.convertNumToColString(getLastColumn()) + (lastRow + 1);
setCellRange(firstCellRef + ":" + lastCellRef);
}

/**

Loading…
Cancel
Save