summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/table/_TableColumn.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/table/_TableColumn.java')
-rw-r--r--qadevOOo/tests/java/ifc/table/_TableColumn.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/tests/java/ifc/table/_TableColumn.java b/qadevOOo/tests/java/ifc/table/_TableColumn.java
index 05b39cea1b88..db95e7fea419 100644
--- a/qadevOOo/tests/java/ifc/table/_TableColumn.java
+++ b/qadevOOo/tests/java/ifc/table/_TableColumn.java
@@ -47,7 +47,7 @@ public class _TableColumn extends MultiPropertyTest {
aRange.getCellByPosition(0,0).setFormula("Thats a pretty long text");
Object width_before = oObj.getPropertyValue("Width");
log.println("Before setting to optimal width: "+width_before);
- oObj.setPropertyValue("OptimalWidth", new Boolean(true));
+ oObj.setPropertyValue("OptimalWidth", Boolean.TRUE);
Object width_after = oObj.getPropertyValue("Width");
log.println("After setting to optimal width: "+width_after);
res = ! ValueComparer.equalValue(width_before,width_after);