[Libreoffice-commits] core.git: qadevOOo/tests
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Fri Aug 31 05:17:42 UTC 2018
qadevOOo/tests/java/mod/_sw/CharacterStyle.java | 4 ++--
qadevOOo/tests/java/mod/_sw/ConditionalParagraphStyle.java | 6 +++---
qadevOOo/tests/java/mod/_sw/PageStyle.java | 6 +++---
qadevOOo/tests/java/mod/_sw/ParagraphStyle.java | 4 ++--
4 files changed, 10 insertions(+), 10 deletions(-)
New commits:
commit 94acf17472c9a1560b5a745fcbed3a9e9506ac53
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Thu Aug 30 19:35:14 2018 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Fri Aug 31 07:17:17 2018 +0200
Typo: skipPropetiesNamed->skipPropertiesNamed
Change-Id: I28810ca142f9b4dcc4bf76305c7fa4e3504adf3b
Reviewed-on: https://gerrit.libreoffice.org/59837
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/qadevOOo/tests/java/mod/_sw/CharacterStyle.java b/qadevOOo/tests/java/mod/_sw/CharacterStyle.java
index 1671a39b99ed..8f7c3b18169b 100644
--- a/qadevOOo/tests/java/mod/_sw/CharacterStyle.java
+++ b/qadevOOo/tests/java/mod/_sw/CharacterStyle.java
@@ -137,10 +137,10 @@ public class CharacterStyle extends TestCase {
XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle);
- String[] skipPropetiesNamed = {};
+ String[] skipPropertiesNamed = {};
short exclude = PropertyAttribute.READONLY;
- tEnv.addObjRelation("PropertyNames",utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude, skipPropetiesNamed));
+ tEnv.addObjRelation("PropertyNames",utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude, skipPropertiesNamed));
return tEnv;
}
diff --git a/qadevOOo/tests/java/mod/_sw/ConditionalParagraphStyle.java b/qadevOOo/tests/java/mod/_sw/ConditionalParagraphStyle.java
index 0ccff31ed554..fbcc9e2b0f64 100644
--- a/qadevOOo/tests/java/mod/_sw/ConditionalParagraphStyle.java
+++ b/qadevOOo/tests/java/mod/_sw/ConditionalParagraphStyle.java
@@ -129,12 +129,12 @@ public class ConditionalParagraphStyle extends TestCase {
XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle);
short exclude = PropertyAttribute.READONLY;
- String[] skipPropetiesNamed = { "ParaBackGraphicURL" };
+ String[] skipPropertiesNamed = { "ParaBackGraphicURL" };
- String[] names = utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude, skipPropetiesNamed);
+ String[] names = utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude, skipPropertiesNamed);
tEnv.addObjRelation("PropertyNames", names);
- tEnv.addObjRelation("SkipProperties", skipPropetiesNamed);
+ tEnv.addObjRelation("SkipProperties", skipPropertiesNamed);
return tEnv;
}
diff --git a/qadevOOo/tests/java/mod/_sw/PageStyle.java b/qadevOOo/tests/java/mod/_sw/PageStyle.java
index fdfac78b1dee..7de28b2019a7 100644
--- a/qadevOOo/tests/java/mod/_sw/PageStyle.java
+++ b/qadevOOo/tests/java/mod/_sw/PageStyle.java
@@ -127,13 +127,13 @@ public class PageStyle extends TestCase {
short exclude = PropertyAttribute.READONLY;
- String[] skipPropetiesNamed = {
+ String[] skipPropertiesNamed = {
"BackGraphicURL", "HeaderBackGraphicURL", "FooterBackGraphicURL"
};
- String[] names = utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude, skipPropetiesNamed);
+ String[] names = utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude, skipPropertiesNamed);
tEnv.addObjRelation("PropertyNames", names);
- tEnv.addObjRelation("SkipProperties", skipPropetiesNamed);
+ tEnv.addObjRelation("SkipProperties", skipPropertiesNamed);
return tEnv;
}
diff --git a/qadevOOo/tests/java/mod/_sw/ParagraphStyle.java b/qadevOOo/tests/java/mod/_sw/ParagraphStyle.java
index e52daed43c02..b85a83ab32a2 100644
--- a/qadevOOo/tests/java/mod/_sw/ParagraphStyle.java
+++ b/qadevOOo/tests/java/mod/_sw/ParagraphStyle.java
@@ -120,9 +120,9 @@ public class ParagraphStyle extends TestCase {
XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle);
short exclude = PropertyAttribute.READONLY;
- String[] skipPropetiesNamed = { "ParaBackGraphicURL" };
+ String[] skipPropertiesNamed = { "ParaBackGraphicURL" };
- String[] names = utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude, skipPropetiesNamed);
+ String[] names = utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude, skipPropertiesNamed);
tEnv.addObjRelation("PropertyNames", names);
return tEnv;
More information about the Libreoffice-commits
mailing list