summaryrefslogtreecommitdiffstats
path: root/qadevOOo/runner/util/UITools.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util/UITools.java')
-rw-r--r--qadevOOo/runner/util/UITools.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/util/UITools.java b/qadevOOo/runner/util/UITools.java
index 49a29e415e84..84d7238046a1 100644
--- a/qadevOOo/runner/util/UITools.java
+++ b/qadevOOo/runner/util/UITools.java
@@ -500,9 +500,9 @@ public class UITools {
currencyVal = currencyVal.substring(0, currencyVal.length()-3) +
"#" + currencyVal.substring(currencyVal.length()-2);
- currencyVal = utils.replaceAll13(currencyVal, ",", "");
- currencyVal = utils.replaceAll13(currencyVal, "\\.", "");
- currencyVal = utils.replaceAll13(currencyVal, "#", ".");
+ currencyVal = currencyVal.replace(",", "");
+ currencyVal = currencyVal.replace("\\.", "");
+ currencyVal = currencyVal.replace("#", ".");
return currencyVal;
} catch (Exception e) {