summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/chart/_ChartAxisXSupplier.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/chart/_ChartAxisXSupplier.java')
-rw-r--r--qadevOOo/tests/java/ifc/chart/_ChartAxisXSupplier.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/ifc/chart/_ChartAxisXSupplier.java b/qadevOOo/tests/java/ifc/chart/_ChartAxisXSupplier.java
index 310ebf02560d..4f9075ef953d 100644
--- a/qadevOOo/tests/java/ifc/chart/_ChartAxisXSupplier.java
+++ b/qadevOOo/tests/java/ifc/chart/_ChartAxisXSupplier.java
@@ -66,7 +66,7 @@ public class _ChartAxisXSupplier extends MultiPropertyTest {
tRes.tested("HasXAxis", !setVal);
// leave axis untouched
- oObj.setPropertyValue("HasXAxis", new Boolean(res));
+ oObj.setPropertyValue("HasXAxis", Boolean.valueOf(res));
}
catch (com.sun.star.lang.WrappedTargetException e) {
log.println(e.getMessage());
@@ -101,7 +101,7 @@ public class _ChartAxisXSupplier extends MultiPropertyTest {
"HasXAxisDescription")).booleanValue();
log.println("Start value: " + res);
- oObj.setPropertyValue("HasXAxisDescription", new Boolean(!res));
+ oObj.setPropertyValue("HasXAxisDescription", Boolean.valueOf(!res));
boolean setValue = ((Boolean)oObj.getPropertyValue(
"HasXAxisDescription")).booleanValue();
log.println("Changed value: " + setValue);