Browse Source

Make the orders match the names, as otherwise people get confused (bug #49381 for example)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@951453 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_7_BETA1
Nick Burch 14 years ago
parent
commit
bfc8f9c426

+ 1
- 1
src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java View File

@@ -1365,8 +1365,8 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
* Creates a split (freezepane). Any existing freezepane or split pane is overwritten.
* @param colSplit Horizonatal position of split.
* @param rowSplit Vertical position of split.
* @param topRow Top row visible in bottom pane
* @param leftmostColumn Left column visible in right pane.
* @param topRow Top row visible in bottom pane
*/
public void createFreezePane(int colSplit, int rowSplit, int leftmostColumn, int topRow) {
validateColumn(colSplit);

+ 1
- 1
src/java/org/apache/poi/ss/usermodel/Sheet.java View File

@@ -535,8 +535,8 @@ public interface Sheet extends Iterable<Row> {
* Creates a split (freezepane). Any existing freezepane or split pane is overwritten.
* @param colSplit Horizonatal position of split.
* @param rowSplit Vertical position of split.
* @param topRow Top row visible in bottom pane
* @param leftmostColumn Left column visible in right pane.
* @param topRow Top row visible in bottom pane
*/
void createFreezePane(int colSplit, int rowSplit, int leftmostColumn, int topRow);


Loading…
Cancel
Save