diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-10 14:58:47 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-10 14:58:47 +0000 |
commit | cc98c1deecef055f80f72f052cb6da117afe5f37 (patch) | |
tree | 34ed5e76edb66713746cc400f0df9ddf0f68300c /forms | |
parent | 15a961617d8e85c8fbb704fd3dbdd64870371cd4 (diff) |
INTEGRATION: CWS dba24 (1.2.22); FILE MERGED
2005/02/11 13:23:27 fs 1.2.22.1: #i42068#
Diffstat (limited to 'forms')
-rw-r--r-- | forms/qa/integration/forms/CellBinding.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/forms/qa/integration/forms/CellBinding.java b/forms/qa/integration/forms/CellBinding.java index 11a2dd9ceb7a..bfd8cad28393 100644 --- a/forms/qa/integration/forms/CellBinding.java +++ b/forms/qa/integration/forms/CellBinding.java @@ -409,7 +409,8 @@ public class CellBinding extends complexlib.ComplexTestCase XAccessibleValue xValue = (XAccessibleValue)UnoRuntime.queryInterface( XAccessibleValue.class, accessible.getAccessibleContext() ); - xValue.setCurrentValue( new Boolean( true ) ); + Integer newValue = new Integer( 1 ); + xValue.setCurrentValue( newValue ); } /* ------------------------------------------------------------------ */ |