summaryrefslogtreecommitdiff
path: root/qadevOOo/runner
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-03-29 10:53:50 +0000
committerRüdiger Timm <rt@openoffice.org>2005-03-29 10:53:50 +0000
commit50f06d8428d2004b91211076c6ac856a354781e0 (patch)
treec2f13733b71a39e585a0fba856a3fd67634272cf /qadevOOo/runner
parent0f15045de74ec60afcee1c0a13aa904129f86511 (diff)
INTEGRATION: CWS qadev22 (1.4.8); FILE MERGED
2005/03/17 13:11:17 sg 1.4.8.1: #i44053#CHG: removed java 131 incompatibilities
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r--qadevOOo/runner/util/UITools.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/runner/util/UITools.java b/qadevOOo/runner/util/UITools.java
index 63101b2ab6eb..17a7e394ab43 100644
--- a/qadevOOo/runner/util/UITools.java
+++ b/qadevOOo/runner/util/UITools.java
@@ -2,9 +2,9 @@
*
* $RCSfile: UITools.java,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change:$Date: 2005-02-02 14:00:18 $
+ * last change:$Date: 2005-03-29 11:53:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -545,9 +545,9 @@ public class UITools {
currencyVal = currencyVal.substring(0, currencyVal.length()-3) +
"#" + currencyVal.substring(currencyVal.length()-2);
- currencyVal = currencyVal.replaceAll(",", "");
- currencyVal = currencyVal.replaceAll("\\.", "");
- currencyVal = currencyVal.replace('#', '.');
+ currencyVal = utils.replaceAll13(currencyVal, ",", "");
+ currencyVal = utils.replaceAll13(currencyVal, "\\.", "");
+ currencyVal = utils.replaceAll13(currencyVal, "#", ".");
return currencyVal;
} catch (Exception e) {