diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-10-09 20:29:10 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-10-09 22:38:36 +0200 |
commit | 25c9f041ad078c94321e18361d6df52894865b7f (patch) | |
tree | 6398f1b3f9afbdb42cd93606a95be892493fe5b0 /qadevOOo | |
parent | df0592cfb16c28b22c0c0331306dd072e7678fce (diff) |
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 <serval2412@yahoo.fr>
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/mod/_sc/ScDataPilotItemObj.java | 28 |
1 files changed, 14 insertions, 14 deletions
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)); |