summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/ValueChanger.java
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2003-11-18 15:17:43 +0000
committerKurt Zenker <kz@openoffice.org>2003-11-18 15:17:43 +0000
commit5a8866e1587920a1fe8aec95d37ba3d81240d6a1 (patch)
tree66a7d3b51a8845435abb1d81171835bdb309aadb /qadevOOo/runner/util/ValueChanger.java
parenta474562a3da9c1ca705bbfa2abc297ea5dce09ae (diff)
INTEGRATION: CWS qadev13 (1.2.34); FILE MERGED
2003/11/12 12:39:57 sg 1.2.34.1: #113007#CHG:fixed bug
Diffstat (limited to 'qadevOOo/runner/util/ValueChanger.java')
-rw-r--r--qadevOOo/runner/util/ValueChanger.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/util/ValueChanger.java b/qadevOOo/runner/util/ValueChanger.java
index 969dd1054ad9..27c8e4bdf940 100644
--- a/qadevOOo/runner/util/ValueChanger.java
+++ b/qadevOOo/runner/util/ValueChanger.java
@@ -2,9 +2,9 @@
*
* $RCSfile: ValueChanger.java,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change:$Date: 2003-01-31 10:16:18 $
+ * last change:$Date: 2003-11-18 16:17:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -95,7 +95,7 @@ public class ValueChanger {
if (oldValue instanceof Boolean) {
boolean oldbool = ((Boolean) oldValue).booleanValue();
- newValue = new Boolean(!oldbool);
+ newValue = Boolean.valueOf(!oldbool);
} else
if (oldValue instanceof Integer) {