From 25c9f041ad078c94321e18361d6df52894865b7f Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 9 Oct 2021 20:29:10 +0200 Subject: Typo: *adress* -> *address* (except from not translated German parts) Change-Id: I62e12aed5bc67119433c39ff333f69b79944dca3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123318 Tested-by: Jenkins Reviewed-by: Julien Nabet --- .../tests/java/mod/_sc/ScDataPilotItemObj.java | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'qadevOOo') diff --git a/qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java b/qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java index 6e2f05452998..47f43fd1d0de 100644 --- a/qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java @@ -121,18 +121,18 @@ public class ScDataPilotItemObj extends TestCase { log.println("Creating a test environment"); // the cell range - CellRangeAddress sCellRangeAdress = new CellRangeAddress(); - sCellRangeAdress.Sheet = 0; - sCellRangeAdress.StartColumn = 1; - sCellRangeAdress.StartRow = 0; - sCellRangeAdress.EndColumn = mMaxFieldIndex - 1; - sCellRangeAdress.EndRow = mMaxFieldIndex - 1; + CellRangeAddress sCellRangeAddress = new CellRangeAddress(); + sCellRangeAddress.Sheet = 0; + sCellRangeAddress.StartColumn = 1; + sCellRangeAddress.StartRow = 0; + sCellRangeAddress.EndColumn = mMaxFieldIndex - 1; + sCellRangeAddress.EndRow = mMaxFieldIndex - 1; // position of the data pilot table - CellAddress sCellAdress = new CellAddress(); - sCellAdress.Sheet = 0; - sCellAdress.Column = 7; - sCellAdress.Row = 8; + CellAddress sCellAddress = new CellAddress(); + sCellAddress.Sheet = 0; + sCellAddress.Column = 7; + sCellAddress.Row = 8; log.println("Getting a sheet"); @@ -168,8 +168,8 @@ public class ScDataPilotItemObj extends TestCase { oSheet.getCellByPosition(1, 5); - int x = sCellAdress.Column; - int y = sCellAdress.Row + 3; + int x = sCellAddress.Column; + int y = sCellAddress.Row + 3; oSheet.getCellByPosition(x, y); @@ -183,7 +183,7 @@ public class ScDataPilotItemObj extends TestCase { oSheet); XDataPilotTables DPT = DPTS.getDataPilotTables(); XDataPilotDescriptor DPDsc = DPT.createDataPilotDescriptor(); - DPDsc.setSourceRange(sCellRangeAdress); + DPDsc.setSourceRange(sCellRangeAddress); XPropertySet fieldPropSet = null; @@ -205,7 +205,7 @@ public class ScDataPilotItemObj extends TestCase { XIndexAccess IA = DPDsc.getDataPilotFields(); getSRange(IA); - DPT.insertNewByName("DataPilotTable", sCellAdress, DPDsc); + DPT.insertNewByName("DataPilotTable", sCellAddress, DPDsc); oObj = (XInterface) AnyConverter.toObject( new Type(XInterface.class), IA.getByIndex(0)); -- cgit