Kaydet (Commit) 94acf174 authored tarafından Julien Nabet's avatar Julien Nabet

Typo: skipPropetiesNamed->skipPropertiesNamed

Change-Id: I28810ca142f9b4dcc4bf76305c7fa4e3504adf3b
Reviewed-on: https://gerrit.libreoffice.org/59837
Tested-by: Jenkins
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 26d237aa
...@@ -137,10 +137,10 @@ public class CharacterStyle extends TestCase { ...@@ -137,10 +137,10 @@ public class CharacterStyle extends TestCase {
XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle); XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle);
String[] skipPropetiesNamed = {}; String[] skipPropertiesNamed = {};
short exclude = PropertyAttribute.READONLY; 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; return tEnv;
} }
......
...@@ -129,12 +129,12 @@ public class ConditionalParagraphStyle extends TestCase { ...@@ -129,12 +129,12 @@ public class ConditionalParagraphStyle extends TestCase {
XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle); XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle);
short exclude = PropertyAttribute.READONLY; 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("PropertyNames", names);
tEnv.addObjRelation("SkipProperties", skipPropetiesNamed); tEnv.addObjRelation("SkipProperties", skipPropertiesNamed);
return tEnv; return tEnv;
} }
......
...@@ -127,13 +127,13 @@ public class PageStyle extends TestCase { ...@@ -127,13 +127,13 @@ public class PageStyle extends TestCase {
short exclude = PropertyAttribute.READONLY; short exclude = PropertyAttribute.READONLY;
String[] skipPropetiesNamed = { String[] skipPropertiesNamed = {
"BackGraphicURL", "HeaderBackGraphicURL", "FooterBackGraphicURL" "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("PropertyNames", names);
tEnv.addObjRelation("SkipProperties", skipPropetiesNamed); tEnv.addObjRelation("SkipProperties", skipPropertiesNamed);
return tEnv; return tEnv;
} }
......
...@@ -120,9 +120,9 @@ public class ParagraphStyle extends TestCase { ...@@ -120,9 +120,9 @@ public class ParagraphStyle extends TestCase {
XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle); XPropertySet xStyleProp = UnoRuntime.queryInterface(XPropertySet.class, oMyStyle);
short exclude = PropertyAttribute.READONLY; 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("PropertyNames", names);
return tEnv; return tEnv;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment